@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Hanken+Grotesk:wght@400;500;600;700&display=swap");

:root {
  color-scheme: light;
  --canvas: #f8efe3;
  --canvas-deep: #f3e4d2;
  --surface: #fffdf9;
  --surface-raised: #ffffff;
  --ink: #332b27;
  --ink-soft: #675850;
  --ink-faint: #88776c;
  --line: rgba(71, 51, 40, 0.12);
  --mint: #2fbf97;
  --mint-dark: #126f58;
  --mint-deep: #0e5d4a;
  --mint-soft: #ddf5ec;
  --coral: #ff765c;
  --coral-dark: #c9432d;
  --coral-soft: #fff0ea;
  --butter: #ffb13c;
  --butter-soft: #fff0cb;
  --sky: #cdeefc;
  --sky-dark: #21719b;
  --peri: #8b7cf6;
  --peri-soft: #eeeaff;
  --display: "Fredoka", ui-rounded, "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow-sm: 0 12px 30px -24px rgba(71, 51, 40, 0.55);
  --shadow-md: 0 24px 58px -35px rgba(71, 51, 40, 0.5);
  --shadow-lg: 0 44px 90px -45px rgba(71, 51, 40, 0.55);
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font: 16px/1.55 var(--body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(900px 560px at 4% -8%, rgba(255, 209, 172, 0.62), transparent 68%),
    radial-gradient(900px 600px at 104% 9%, rgba(190, 240, 223, 0.72), transparent 64%),
    linear-gradient(180deg, #fff8ed 0, var(--canvas) 72%);
  content: "";
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--butter);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
}

.site-nav {
  display: grid;
  min-height: 86px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 700 25px/1 var(--display);
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-dot {
  color: var(--coral-dark);
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(51, 43, 39, 0.09);
  border-radius: 13px;
  background: #fff6e9;
  box-shadow: 0 8px 18px -11px rgba(14, 93, 74, 0.65);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-action {
  justify-self: end;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--mint-deep);
  box-shadow: 0 14px 28px -18px rgba(14, 93, 74, 0.8);
  color: #fff;
  font: 700 15px/1 var(--display);
  text-decoration: none;
  transition: transform 100ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #084d3d;
  box-shadow: 0 18px 34px -19px rgba(14, 93, 74, 0.9);
}

.button:active {
  transform: scale(0.98);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.button.secondary:hover {
  background: #fff;
}

.button.small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 14px;
}

.hero {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
  padding: 50px 0 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(14, 93, 74, 0.1);
  border-radius: 999px;
  background: rgba(221, 245, 236, 0.85);
  color: var(--mint-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  text-wrap: balance;
}

.hero h1 {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(52px, 6.3vw, 82px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--coral-dark);
}

.hero-lede {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-scope {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--mint-deep);
  font-size: 14px;
  line-height: 1.5;
}

.hero-scope strong {
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  display: inline-flex;
  min-width: 174px;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 10px 17px;
  border-radius: 17px;
  background: #201c1a;
  box-shadow: 0 18px 30px -20px rgba(32, 28, 26, 0.75);
  color: #fff;
  text-decoration: none;
  transition: transform 100ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  box-shadow: 0 22px 36px -21px rgba(32, 28, 26, 0.9);
  transform: translateY(-1px);
}

.store-button:active {
  transform: scale(0.98);
}

.store-button.pending {
  background: rgba(32, 28, 26, 0.88);
  cursor: default;
}

.store-button.pending:hover,
.store-button.pending:active {
  box-shadow: 0 18px 30px -20px rgba(32, 28, 26, 0.75);
  transform: none;
}

.store-symbol {
  width: 26px;
  color: #fff;
  font: 700 25px/1 var(--body);
  text-align: center;
}

.store-label small,
.store-label strong {
  display: block;
}

.store-label small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.store-label strong {
  font: 600 16px/1.12 var(--display);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 600;
}

.hero-note::before {
  width: 20px;
  height: 1px;
  background: var(--coral);
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  width: 490px;
  height: 490px;
  border-radius: 48% 52% 60% 40% / 43% 39% 61% 57%;
  background: linear-gradient(145deg, #c8f2e3, #f8d7b4 72%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  content: "";
  inset: 54px 2px auto auto;
  transform: rotate(7deg);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 112px;
  height: 112px;
  border: 28px solid rgba(255, 177, 60, 0.62);
  border-radius: 50%;
  content: "";
  inset: 16px auto auto 8px;
}

.phone {
  position: absolute;
  top: 20px;
  right: 50%;
  width: min(355px, 78vw);
  min-height: 590px;
  padding: 13px;
  overflow: hidden;
  border: 1px solid rgba(51, 43, 39, 0.15);
  border-radius: 52px;
  background: #24201e;
  box-shadow: 0 56px 100px -48px rgba(51, 43, 39, 0.72), 0 0 0 8px rgba(255, 255, 255, 0.35);
  transform: translateX(50%) rotate(-2.5deg);
}

.phone-screen {
  min-height: 564px;
  padding: 22px 18px 14px;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(330px 260px at 20% 12%, rgba(255, 209, 172, 0.78), transparent 74%),
    linear-gradient(180deg, #fff5e7, #f8efe5 48%, #eef8f3);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pet-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(51, 43, 39, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.pet-switcher img {
  width: 25px;
  height: 25px;
  padding: 2px;
  border-radius: 50%;
  background: var(--mint-soft);
}

.phone-greeting {
  margin: 18px 0 2px;
  font: 600 25px/1.08 var(--display);
  letter-spacing: -0.03em;
}

.phone-date {
  margin: 0;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 600;
}

.care-pulse {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 17px;
  padding: 16px;
  border: 1px solid rgba(51, 43, 39, 0.08);
  border-radius: 26px 26px 31px 21px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-md);
}

.care-ring {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--mint) 0 78%, rgba(47, 191, 151, 0.15) 78%);
}

.care-ring img {
  width: 52px;
  height: 52px;
  padding: 4px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: #effcf7;
}

.care-copy strong,
.care-copy span {
  display: block;
}

.care-copy strong {
  margin-top: 4px;
  font: 600 16px/1.2 var(--display);
}

.care-copy span {
  margin-top: 5px;
  color: var(--ink-faint);
  font-size: 11px;
  line-height: 1.35;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.mini-card {
  min-height: 96px;
  padding: 13px;
  border: 1px solid rgba(51, 43, 39, 0.075);
  border-radius: 19px 22px 18px 23px;
  background: rgba(255, 255, 255, 0.88);
}

.mini-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-faint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-label::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.mini-card:nth-child(2) .mini-label::before {
  background: var(--peri);
}

.mini-card strong {
  display: block;
  margin-top: 11px;
  font: 600 14px/1.2 var(--display);
}

.mini-card small {
  display: block;
  margin-top: 4px;
  color: var(--ink-faint);
  font-size: 10px;
}

.people-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(51, 43, 39, 0.075);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
}

.people-card strong {
  font: 600 12px/1.2 var(--display);
}

.avatar-stack {
  display: flex;
  padding-left: 12px;
}

.avatar-stack span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-left: -9px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--sky);
  color: var(--sky-dark);
  font-size: 9px;
  font-weight: 800;
}

.avatar-stack span:nth-child(2) {
  background: var(--butter-soft);
  color: #8a5600;
}

.avatar-stack span:nth-child(3) {
  background: var(--peri-soft);
  color: #5645c1;
}

.phone-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 14px;
  padding: 10px 5px 0;
  border-top: 1px solid rgba(51, 43, 39, 0.08);
  color: var(--ink-faint);
  font-size: 8.5px;
  font-weight: 800;
  text-align: center;
}

.phone-tabs span:first-child {
  color: var(--mint-deep);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 176px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(51, 43, 39, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font: 600 13px/1.15 var(--display);
}

.floating-note span {
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 10px;
}

.note-one {
  top: 132px;
  left: -18px;
  transform: rotate(3deg);
}

.note-two {
  right: -10px;
  bottom: 95px;
  transform: rotate(-2deg);
}

.note-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: var(--coral-soft);
  color: var(--coral-dark);
  font: 700 17px/1 var(--display);
}

.note-two .note-icon {
  background: var(--mint-soft);
  color: var(--mint-deep);
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.54);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 27px 32px;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font: 600 17px/1.2 var(--display);
}

.trust-item span {
  margin-top: 5px;
  color: var(--ink-faint);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section.compact {
  padding-block: 76px;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-heading.center,
.section-lede.center {
  margin-inline: auto;
  text-align: center;
}

.section-lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  text-wrap: pretty;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 52px;
}

.care-card {
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px 34px 42px 27px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-md);
}

.care-card.wide {
  min-height: 280px;
  grid-column: span 7;
}

.care-card.narrow {
  min-height: 280px;
  grid-column: span 5;
}

.care-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--mint-soft);
  content: "";
}

.care-card.coral::after {
  background: var(--coral-soft);
}

.care-card.butter::after {
  background: var(--butter-soft);
}

.care-card.peri::after {
  background: var(--peri-soft);
}

.card-number {
  display: inline-flex;
  min-width: 36px;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  font: 700 12px/1 var(--display);
}

.care-card.coral .card-number {
  background: var(--coral-soft);
  color: var(--coral-dark);
}

.care-card.butter .card-number {
  background: var(--butter-soft);
  color: #805000;
}

.care-card.peri .card-number {
  background: var(--peri-soft);
  color: #5543c0;
}

.care-card h3 {
  max-width: 360px;
  margin-top: 48px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.care-card p {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.care-card .micro-ui {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: flex;
  gap: 8px;
}

.micro-ui span {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(51, 43, 39, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink-soft);
  font: 700 11px/1 var(--display);
}

.story-panel {
  overflow: hidden;
  border: 1px solid rgba(14, 93, 74, 0.15);
  border-radius: 44px 44px 56px 34px;
  background: linear-gradient(140deg, #126f58, #0b503f);
  box-shadow: 0 36px 70px -42px rgba(14, 93, 74, 0.9);
  color: white;
}

.story-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  padding: 58px;
}

.story-intro .section-kicker {
  color: #b9f0dc;
}

.story-intro h2 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.story-intro p {
  max-width: 620px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.story-step {
  min-height: 250px;
  padding: 30px;
}

.story-step + .story-step {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.story-time {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #dcfff2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-step h3 {
  margin-top: 42px;
  font-size: 21px;
  font-weight: 600;
}

.story-step p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.belief-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 92px;
}

.belief-list {
  display: grid;
  gap: 12px;
}

.belief-item {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 22px 25px 21px 27px;
  background: rgba(255, 253, 249, 0.72);
}

.belief-item strong,
.belief-item span {
  display: block;
}

.belief-item strong {
  font: 600 18px/1.15 var(--display);
}

.belief-item span {
  margin-top: 6px;
  color: var(--ink-faint);
  font-size: 14px;
}

.plus-card {
  position: relative;
  padding: 54px;
  overflow: hidden;
  border: 1px solid rgba(139, 124, 246, 0.24);
  border-radius: 42px 42px 32px 54px;
  background: linear-gradient(145deg, #f0edff, #fff9ed);
  box-shadow: var(--shadow-lg);
}

.plus-card::before {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 46px solid rgba(139, 124, 246, 0.14);
  border-radius: 50%;
  content: "";
  inset: -94px -60px auto auto;
}

.plus-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--peri);
  color: white;
  font: 700 12px/1 var(--display);
  letter-spacing: 0.04em;
}

.plus-card h2 {
  max-width: 720px;
  margin-top: 20px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.plus-card p {
  max-width: 710px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.price-pill {
  padding: 12px 16px;
  border: 1px solid rgba(139, 124, 246, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.price-pill strong {
  font-family: var(--display);
  font-size: 19px;
}

.fine-print {
  max-width: 750px;
  margin-top: 18px !important;
  color: var(--ink-faint) !important;
  font-size: 12px !important;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 86px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font: 600 19px/1.25 var(--display);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-soft);
  color: var(--mint-deep);
  content: "+";
  font: 600 20px/1 var(--display);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 670px;
  margin: -4px 50px 24px 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.closing-card {
  position: relative;
  overflow: hidden;
  padding: 74px 40px;
  border-radius: 48px 48px 60px 36px;
  background: linear-gradient(145deg, #ffdcb8, #f7c6be 48%, #c9eedf);
  text-align: center;
}

.closing-card::before,
.closing-card::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  content: "";
}

.closing-card::before {
  width: 190px;
  height: 190px;
  inset: -90px auto auto -55px;
}

.closing-card::after {
  width: 240px;
  height: 240px;
  inset: auto -100px -120px auto;
}

.closing-card img {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  padding: 8px;
  border: 7px solid var(--mint);
  border-radius: 50%;
  background: #effcf7;
  box-shadow: var(--shadow-md);
}

.closing-card h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.closing-card p {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 18px auto 0;
  color: #5f4b42;
  font-size: 18px;
}

.closing-card .hero-actions {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.site-footer {
  padding: 64px 0 42px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.6fr);
  gap: 44px;
  padding-bottom: 48px;
}

.footer-brand p {
  max-width: 340px;
  margin: 17px 0 0;
  color: var(--ink-faint);
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  font: 600 14px/1 var(--display);
}

.footer-column a {
  display: block;
  width: max-content;
  margin-top: 9px;
  color: var(--ink-faint);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 12px;
}

.footer-bottom a {
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1020px) {
  .site-nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 680px);
    min-height: 650px;
    margin-inline: auto;
  }

  .care-card {
    grid-column: span 6;
  }

  .care-card.wide,
  .care-card.narrow {
    grid-column: span 6;
  }

  .care-card:last-child {
    grid-column: 4 / span 6;
  }

  .story-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .story-steps {
    grid-template-columns: 1fr 1fr;
  }

  .story-step:nth-child(3) {
    border-left: 0;
  }

  .story-step:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .belief-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 0.6fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .site-nav {
    min-height: 74px;
  }

  .wordmark {
    font-size: 22px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-action .button {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 13px;
  }

  .hero {
    padding: 52px 0 68px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .store-button {
    min-width: 0;
    flex: 1 1 160px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .hero-visual::before {
    width: min(430px, 92vw);
    height: min(430px, 92vw);
    inset: 80px 50% auto auto;
    transform: translateX(50%) rotate(7deg);
  }

  .hero-visual::after {
    display: none;
  }

  .phone {
    top: 18px;
    width: min(340px, 89vw);
  }

  .note-one {
    top: 390px;
    left: 0;
  }

  .note-two {
    right: 0;
    bottom: 18px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 22px;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 82px;
  }

  .care-grid {
    margin-top: 38px;
  }

  .care-card,
  .care-card.wide,
  .care-card.narrow,
  .care-card:last-child {
    min-height: 265px;
    grid-column: 1 / -1;
  }

  .story-panel {
    border-radius: 34px 34px 42px 28px;
  }

  .story-intro {
    padding: 38px 26px;
  }

  .story-steps {
    grid-template-columns: 1fr;
  }

  .story-step {
    min-height: 220px;
    padding: 28px 26px;
  }

  .story-step + .story-step,
  .story-step:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .plus-card {
    padding: 38px 25px;
    border-radius: 32px 32px 25px 38px;
  }

  .faq-item summary {
    min-height: 72px;
    font-size: 17px;
  }

  .closing-card {
    padding: 54px 24px;
    border-radius: 36px 36px 44px 27px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .nav-action .button {
    padding-inline: 13px;
  }

  .brand-mark {
    display: none;
  }

  .hero-visual {
    min-height: 590px;
  }

  .floating-note {
    min-width: 158px;
    padding: 10px;
  }

  .note-one {
    left: -7px;
  }

  .note-two {
    right: -7px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  body::before,
  .site-header,
  .hero-visual,
  .closing-card,
  .store-button {
    display: none !important;
  }
}
