@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --brand: #44cfc3;
  --brand-soft: #c9f2ed;
  --brand-pale: #eaf9f6;
  --brand-deep: #087c76;
  --ink: #12383b;
  --ink-2: #31595b;
  --ink-3: #698183;
  --paper: #fbfaf5;
  --cream: #f2efe3;
  --white: #ffffff;
  --wine: #7f2d40;
  --coral: #ef8e6c;
  --yellow: #e2e876;
  --line: rgba(18, 56, 59, 0.14);
  --shadow: 0 24px 80px rgba(13, 62, 62, 0.1);
  --shadow-soft: 0 12px 40px rgba(13, 62, 62, 0.08);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --max: 1200px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: clamp(3.65rem, 8vw, 7.6rem);
  line-height: 0.87;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.3;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--ink);
  background: var(--brand-soft);
}

:focus-visible {
  outline: 3px solid var(--brand-deep);
  outline-offset: 4px;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 790px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(86px, 11vw, 150px) 0;
}

.section-sm {
  padding: clamp(58px, 8vw, 100px) 0;
}

.section-title {
  max-width: 820px;
}

.section-intro {
  max-width: 670px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: '';
}

.eyebrow.light {
  color: var(--brand);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-deep);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: '↗';
  transition: transform 180ms ease;
}

.text-link.internal::after {
  content: '→';
}

.text-link:hover::after {
  transform: translate(3px, -3px);
}

.text-link.internal:hover::after {
  transform: translateX(4px);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  color: var(--ink);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: #5bd8ce;
  box-shadow: 0 10px 24px rgba(68, 207, 195, 0.25);
  transform: translateY(-2px);
}

.button.dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button.dark:hover {
  background: #19484b;
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.65);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.scrolled,
.site-header.solid {
  background: rgba(251, 250, 245, 0.9);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 34px), 1320px);
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-3);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav > a:not(.nav-pill):not(.icon-link) {
  position: relative;
  color: var(--ink-2);
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav > a:not(.nav-pill):not(.icon-link)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current='page']::after {
  transform: scaleX(1);
}

.nav-pill {
  padding: 9px 15px;
  color: var(--ink);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.icon-link {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.icon-link svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded='true'] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded='true'] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) 0 72px;
  background:
    radial-gradient(circle at 84% 19%, rgba(68, 207, 195, 0.26), transparent 25%),
    linear-gradient(135deg, var(--paper) 0%, #f8f7f0 58%, #ecf8f5 100%);
}

.hero::before {
  position: absolute;
  width: 430px;
  height: 430px;
  top: 11%;
  right: -270px;
  border: 1px solid rgba(18, 56, 59, 0.1);
  border-radius: 50%;
  content: '';
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height) - 142px);
  grid-template-columns: minmax(0, 1.22fr) minmax(350px, 0.78fr);
  align-items: center;
  gap: clamp(30px, 6vw, 90px);
}

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

.hero h1 em {
  color: var(--brand-deep);
  font-weight: 400;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--ink-2);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-3);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-stage {
  position: relative;
  min-height: 550px;
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(33vw, 430px);
  min-width: 350px;
  aspect-ratio: 1;
  border: 1px solid rgba(18, 56, 59, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  border-radius: inherit;
  content: '';
}

.stage-orbit::before {
  inset: 36px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stage-orbit::after {
  inset: 80px;
  background: var(--brand-soft);
}

.stage-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 145px;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 16px 28px rgba(18, 56, 59, 0.11));
}

.orbit-dot {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  background: var(--yellow);
  border: 4px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.orbit-dot.one {
  top: 11%;
  left: 17%;
}

.orbit-dot.two {
  right: 3%;
  bottom: 25%;
  background: var(--coral);
}

.stage-card {
  position: absolute;
  z-index: 5;
  width: 200px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.stage-card strong,
.stage-card small {
  display: block;
}

.stage-card strong {
  margin-bottom: 2px;
  font-size: 0.88rem;
}

.stage-card small {
  color: var(--ink-3);
  font-size: 0.72rem;
}

.stage-card .mini-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 10px;
  color: var(--brand-deep);
  background: var(--brand-pale);
  border-radius: 50%;
}

.stage-card.before {
  top: 5%;
  left: -3%;
}

.stage-card.during {
  top: 42%;
  right: -10%;
}

.stage-card.after {
  bottom: 3%;
  left: 2%;
}

.monitor-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.monitor-line svg {
  width: 70px;
  color: var(--brand-deep);
}

.statement {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.statement::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(68, 207, 195, 0.16), transparent 66%);
  content: '';
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: 60px;
}

.statement-mark {
  color: var(--brand);
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(6rem, 12vw, 11rem);
  line-height: 0.7;
}

.statement h2 {
  max-width: 900px;
  margin-bottom: 28px;
}

.statement p {
  max-width: 660px;
  color: #bed1d1;
  font-size: 1.06rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.care-step {
  position: relative;
  padding: 28px 26px 0 0;
}

.care-step:not(:last-child) {
  border-right: 1px solid var(--line);
}

.care-step:not(:first-child) {
  padding-left: 26px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-number::after {
  width: 32px;
  height: 1px;
  background: var(--brand);
  content: '';
}

.care-step p {
  color: var(--ink-2);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.tutor-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(127, 45, 64, 0.9), rgba(94, 32, 49, 0.98)),
    var(--wine);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.tutor-visual::before {
  position: absolute;
  width: 330px;
  height: 330px;
  right: -80px;
  bottom: -100px;
  border: 70px solid rgba(239, 142, 108, 0.38);
  border-radius: 50%;
  content: '';
}

.tutor-question {
  position: absolute;
  z-index: 2;
  top: 45px;
  right: 40px;
  left: 40px;
  color: var(--white);
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.tutor-question mark {
  color: var(--ink);
  background: var(--yellow);
  box-decoration-break: clone;
  padding: 0 0.08em;
}

.pet-orbit {
  position: absolute;
  right: 46px;
  bottom: 54px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.pet-orbit svg {
  position: absolute;
  right: 40px;
  bottom: 29px;
  width: 146px;
  color: var(--white);
}

.caption-chip {
  position: absolute;
  z-index: 3;
  bottom: 46px;
  left: 40px;
  max-width: 205px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(-3deg);
}

.topic-list {
  display: grid;
  gap: 0;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.topic-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-decoration: none;
}

.topic-list a span:last-child {
  color: var(--brand-deep);
  transition: transform 180ms ease;
}

.topic-list a:hover span:last-child {
  transform: translateX(4px);
}

.professional-band {
  background: var(--cream);
}

.professional-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.1fr 0.9fr;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.professional-copy {
  padding: clamp(42px, 7vw, 84px);
}

.professional-copy p {
  max-width: 630px;
  color: #bed1d1;
  font-size: 1.04rem;
}

.professional-copy .text-link {
  margin-top: 24px;
  color: var(--brand);
}

.professional-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(68, 207, 195, 0.95), rgba(24, 154, 146, 0.82)),
    var(--brand);
}

.professional-visual::before,
.professional-visual::after {
  position: absolute;
  border: 1px solid rgba(18, 56, 59, 0.18);
  border-radius: 50%;
  content: '';
}

.professional-visual::before {
  width: 430px;
  height: 430px;
  top: -110px;
  right: -120px;
}

.professional-visual::after {
  width: 280px;
  height: 280px;
  right: 70px;
  bottom: -110px;
}

.professional-visual .visual-a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;
  transform: translate(-50%, -50%);
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.data-strip {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(18, 56, 59, 0.9);
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.data-strip svg {
  width: 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.team-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle svg {
  width: 28px;
  margin-bottom: 40px;
  color: var(--brand-deep);
}

.principle p {
  color: var(--ink-2);
  font-size: 0.86rem;
}

.instagram-section {
  overflow: hidden;
  background: #efe9dc;
}

.instagram-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 55px;
}

.instagram-head h2 {
  margin-bottom: 0;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.95fr;
  gap: 20px;
}

.editorial-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(50, 42, 31, 0.07);
  text-decoration: none;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.editorial-card:hover {
  box-shadow: 0 18px 44px rgba(50, 42, 31, 0.13);
  transform: translateY(-5px);
}

.editorial-card.orange {
  color: #2d231f;
  background: var(--coral);
}

.editorial-card.wine {
  color: var(--white);
  background: var(--wine);
}

.editorial-card.mint {
  color: var(--ink);
  background: var(--brand-soft);
}

.editorial-card .card-meta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.editorial-card .card-title {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 30px;
  left: 28px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.editorial-card .highlight {
  display: inline;
  color: var(--ink);
  background: var(--yellow);
  box-decoration-break: clone;
  padding: 0 0.08em;
}

.paper-cut {
  position: absolute;
  top: 85px;
  left: -28px;
  width: 75%;
  height: 92px;
  background: rgba(255, 248, 228, 0.86);
  transform: rotate(-6deg);
}

.paper-cut::after {
  position: absolute;
  right: 17px;
  bottom: 14px;
  color: var(--ink);
  content: 'EVIDÊNCIA • CUIDADO • PRESENÇA';
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 700;
}

.cross-pattern {
  position: absolute;
  inset: 80px 18px auto auto;
  display: grid;
  grid-template-columns: repeat(3, 28px);
  gap: 15px;
  opacity: 0.23;
}

.cross-pattern span {
  position: relative;
  width: 28px;
  height: 28px;
}

.cross-pattern span::before,
.cross-pattern span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 5px;
  background: currentColor;
  content: '';
  transform: translate(-50%, -50%);
}

.cross-pattern span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.team-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.team-note p {
  max-width: 780px;
  margin: 0;
  color: var(--ink-2);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 110px) 0 clamp(78px, 10vw, 135px);
  background:
    radial-gradient(circle at 85% 15%, rgba(68, 207, 195, 0.23), transparent 27%),
    linear-gradient(145deg, var(--paper), #edf8f5);
}

.page-hero::after {
  position: absolute;
  top: 18%;
  right: 7%;
  width: clamp(220px, 29vw, 440px);
  height: clamp(220px, 29vw, 440px);
  border: 1px solid rgba(18, 56, 59, 0.1);
  border-radius: 50%;
  content: '';
}

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

.page-hero h1 {
  max-width: 1000px;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.page-hero .hero-lead {
  max-width: 720px;
}

.page-hero.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(68, 207, 195, 0.17), transparent 30%),
    var(--ink);
}

.page-hero.dark .hero-lead {
  color: #bed1d1;
}

.page-hero.dark::after {
  border-color: rgba(255, 255, 255, 0.12);
}

.notice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--brand-pale);
  border: 1px solid rgba(68, 207, 195, 0.32);
  border-radius: var(--radius-sm);
}

.notice-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--brand-deep);
  background: var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.notice strong {
  display: block;
  margin-bottom: 4px;
}

.notice p {
  color: var(--ink-2);
  font-size: 0.91rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.info-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(18, 56, 59, 0.035);
}

.info-card .number,
.info-card .icon-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 48px;
  color: var(--brand-deep);
  background: var(--brand-pale);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
}

.info-card p {
  color: var(--ink-2);
  font-size: 0.91rem;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 54px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.phase {
  min-height: 330px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.055);
}

.phase .phase-label {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phase h3 {
  font-size: 1.35rem;
}

.phase p {
  color: #bed1d1;
  font-size: 0.9rem;
}

.monitor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.monitor-tags span {
  padding: 8px 13px;
  color: var(--ink-2);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

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

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

.faq-item summary {
  position: relative;
  padding: 25px 55px 25px 0;
  font-size: 1.03rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: var(--brand-deep);
  content: '';
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 820px;
  padding: 0 55px 27px 0;
  color: var(--ink-2);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(38px, 6vw, 66px);
  color: var(--white);
  background: var(--wine);
  border-radius: var(--radius-lg);
}

.cta-panel h2 {
  max-width: 680px;
  margin-bottom: 10px;
}

.cta-panel p {
  max-width: 650px;
  color: #ead4d9;
}

.cta-panel .button {
  flex: 0 0 auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
}

.partner-flow {
  counter-reset: partner-step;
  border-top: 1px solid var(--line);
}

.partner-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.partner-step::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand-deep);
  background: var(--brand-pale);
  border-radius: 50%;
  content: '0' counter(partner-step);
  counter-increment: partner-step;
  font-size: 0.71rem;
  font-weight: 800;
}

.partner-step h3 {
  margin-bottom: 5px;
}

.partner-step p {
  color: var(--ink-2);
  font-size: 0.91rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card svg {
  width: 28px;
  margin-bottom: 52px;
  color: var(--brand-deep);
}

.feature-card p {
  color: var(--ink-2);
  font-size: 0.9rem;
}

.record-showcase {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.record-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.record-copy p {
  color: #bed1d1;
}

.record-copy .button {
  margin-top: 24px;
}

.record-browser {
  position: relative;
  min-height: 510px;
  padding: 64px 28px 28px;
  color: var(--ink);
  background: #eef9f7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transform: rotate(1.5deg);
}

.browser-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 8px;
  height: 8px;
  background: var(--line);
  border-radius: 50%;
}

.browser-top small {
  margin-left: 8px;
  color: var(--ink-3);
  font-size: 0.62rem;
}

.record-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.record-head img {
  width: 54px;
}

.record-status {
  padding: 6px 10px;
  color: var(--brand-deep);
  background: var(--brand-soft);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.record-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock-field {
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.mock-field.wide {
  grid-column: 1 / -1;
}

.mock-field span,
.mock-field strong {
  display: block;
}

.mock-field span {
  margin-bottom: 7px;
  color: var(--ink-3);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mock-field strong {
  font-size: 0.78rem;
}

.mock-chart {
  display: flex;
  height: 110px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  color: var(--brand-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.mock-chart svg {
  width: 88%;
  height: 60px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.article-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  grid-column: span 4;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card.featured {
  grid-column: span 8;
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
}

.article-card.mint-card {
  background: var(--brand-pale);
}

.article-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.article-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
  color: var(--brand-deep);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card.featured .article-tag {
  color: var(--yellow);
}

.article-card h3 {
  margin: 70px 0 14px;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.article-card p {
  color: var(--ink-2);
  font-size: 0.9rem;
}

.article-card.featured p {
  max-width: 650px;
  color: #ead4d9;
}

.article-body {
  padding: 54px 0;
  border-bottom: 1px solid var(--line);
}

.article-body:last-child {
  border-bottom: 0;
}

.article-body h2 {
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.article-body p {
  max-width: 760px;
  color: var(--ink-2);
}

.article-index {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 38px;
}

.article-index .article-number {
  color: var(--brand-deep);
  font-family: 'Newsreader', Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.article-index .article-content {
  max-width: 760px;
}

.article-index ul {
  padding-left: 20px;
  color: var(--ink-2);
}

.final-cta {
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(68, 207, 195, 0.3), transparent 42%),
    var(--cream);
}

.final-cta h2 {
  max-width: 820px;
  margin-inline: auto;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 30px;
  color: var(--ink-2);
}

.site-footer {
  color: var(--white);
  background: #0c2c2f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 50px;
  padding: 70px 0 54px;
}

.footer-brand .brand {
  margin-bottom: 22px;
  color: var(--white);
}

.footer-brand .brand-copy small {
  color: #9bb5b5;
}

.footer-brand p {
  max-width: 390px;
  color: #9bb5b5;
  font-size: 0.88rem;
}

.footer-col strong {
  display: block;
  margin-bottom: 19px;
  color: var(--brand);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a {
  display: table;
  margin-bottom: 10px;
  color: #d7e4e3;
  font-size: 0.86rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0 28px;
  color: #789697;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal.delay-1 {
  transition-delay: 90ms;
}

.js .reveal.delay-2 {
  transition-delay: 180ms;
}

.js .reveal.delay-3 {
  transition-delay: 270ms;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav > a:not(.nav-pill):not(.icon-link) {
    font-size: 0.77rem;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.72fr;
  }

  .stage-card {
    width: 174px;
  }

  .stage-card.during {
    right: -4%;
  }

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

  .care-step:nth-child(2) {
    border-right: 0;
  }

  .care-step:nth-child(3),
  .care-step:nth-child(4) {
    margin-top: 35px;
    border-top: 1px solid var(--line);
  }

  .editorial-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .editorial-card:last-child {
    grid-column: 1 / -1;
    min-height: 310px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-height) 0 0;
    display: flex;
    padding: 34px 20px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    width: 100%;
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-family: 'Newsreader', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    text-decoration: none;
  }

  .mobile-nav .mobile-meta {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 28px;
    color: var(--ink-3);
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 75px);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    width: min(100%, 570px);
    min-height: 520px;
    margin: 10px auto 0;
  }

  .statement-grid,
  .split-section,
  .team-grid,
  .partner-grid,
  .record-grid {
    grid-template-columns: 1fr;
  }

  .statement-mark {
    height: 55px;
  }

  .professional-card {
    grid-template-columns: 1fr;
  }

  .professional-visual {
    min-height: 330px;
  }

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

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

  .phase {
    min-height: 260px;
  }

  .phase .phase-label {
    margin-bottom: 45px;
  }

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

  .article-card,
  .article-card.featured {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-bottom: 50px;
  }

  .hero-stage {
    min-height: 450px;
  }

  .stage-orbit {
    min-width: 310px;
  }

  .stage-logo {
    width: 110px;
  }

  .stage-card {
    width: 154px;
    padding: 13px 14px;
  }

  .stage-card.before {
    left: -1%;
  }

  .stage-card.during {
    top: 44%;
    right: -1%;
  }

  .stage-card.after {
    left: 5%;
  }

  .statement-grid {
    gap: 30px;
  }

  .care-grid,
  .info-grid,
  .feature-list,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .care-step,
  .care-step:not(:first-child) {
    padding: 25px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .care-step:nth-child(3),
  .care-step:nth-child(4) {
    margin-top: 0;
  }

  .step-number {
    margin-bottom: 25px;
  }

  .tutor-visual {
    min-height: 500px;
  }

  .tutor-question {
    top: 35px;
    right: 28px;
    left: 28px;
  }

  .caption-chip {
    bottom: 30px;
    left: 25px;
  }

  .pet-orbit {
    right: 25px;
    bottom: 35px;
  }

  .professional-copy {
    padding: 38px 28px;
  }

  .team-principles {
    grid-template-columns: 1fr;
  }

  .instagram-head,
  .team-note,
  .cta-panel,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .editorial-card,
  .editorial-card:last-child {
    min-height: 360px;
    grid-column: auto;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 75px);
  }

  .page-hero::after {
    top: auto;
    right: -25%;
    bottom: -35%;
  }

  .info-card {
    min-height: 230px;
  }

  .info-card .number,
  .info-card .icon-badge {
    margin-bottom: 34px;
  }

  .cta-panel {
    display: flex;
  }

  .record-browser {
    min-height: 470px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .article-card,
  .article-card.featured {
    min-height: 350px;
  }

  .article-index {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-index .article-number {
    font-size: 2.4rem;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

