:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --gray: #f5f5f7;
  --gray-deep: #e8e8ed;
  --white: #fff;
  --coral: #d96c62;
  --coral-deep: #bd534c;
  --coral-light: #f2b0a9;
  --night: #0b0b0d;
  --card-night: #1d1d1f;
  --max: 1180px;
  --wide: 1440px;
  --radius: 30px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 58px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
::selection { color: white; background: var(--coral); }
:focus-visible { outline: 3px solid rgba(189, 83, 76, .55); outline-offset: 3px; }
summary:focus-visible, .menu-toggle:focus-visible { border-radius: 8px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -80px;
  left: 18px;
  padding: 11px 18px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 54px;
  background: rgba(250, 250, 252, .84);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  height: 54px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { width: 104px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(28px, 4vw, 52px); }
.desktop-nav a {
  color: #3a3a3c;
  font-size: 12px;
  transition: color .2s;
}
.desktop-nav a:hover { color: var(--coral-deep); }
.nav-cta {
  padding: 8px 17px;
  color: white;
  background: var(--coral);
  border-radius: 980px;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--coral-deep); transform: translateY(-1px); }
.menu-toggle, .mobile-nav { display: none; }

.section { padding: 138px max(24px, calc((100vw - var(--max)) / 2)); }
.section-gray { background: var(--gray); }
.section-dark { color: white; background: var(--night); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-deep);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -.01em;
}
.section-dark .eyebrow { color: var(--coral-light); }
.button {
  min-height: 48px;
  padding: 13px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: transform .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--coral); }
.button-primary:hover { background: var(--coral-deep); }
.button-light { color: var(--ink); background: white; }
.button-light:hover { background: #f0f0f2; }
.text-link {
  color: var(--coral-deep);
  font-size: 18px;
  line-height: 1.3;
}
.text-link span { display: inline-block; margin-left: 4px; font-size: 25px; vertical-align: -1px; transition: transform .2s; }
.text-link:hover span { transform: translateX(3px); }

.hero {
  padding: 105px 24px 12px;
  overflow: hidden;
  text-align: center;
}
.hero-copy { max-width: 1050px; margin: 0 auto 58px; }
.hero h1 {
  margin: 0;
  font-size: clamp(62px, 8.4vw, 116px);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 700;
}
.hero h1 span {
  color: transparent;
  background: linear-gradient(110deg, var(--coral-deep), #e58d80 55%, #b44844);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-intro {
  max-width: 800px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.3;
  letter-spacing: -.025em;
}
.hero-actions { margin-top: 32px; display: flex; align-items: center; justify-content: center; gap: 24px; }
.hero-stage {
  position: relative;
  width: min(var(--wide), 100%);
  height: min(70vw, 790px);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: #120d0a;
  border-radius: 38px;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .14) 47%, rgba(0, 0, 0, .04) 100%);
  pointer-events: none;
}
.hero-stage picture, .hero-stage img { width: 100%; height: 100%; }
.hero-stage img { object-fit: cover; object-position: center; transform: scale(1.01); }
.hero-caption {
  position: absolute;
  z-index: 1;
  left: clamp(30px, 6vw, 88px);
  bottom: clamp(34px, 7vw, 92px);
  max-width: 510px;
  color: white;
  text-align: left;
}
.hero-caption span { display: block; margin-bottom: 11px; color: var(--coral-light); font-size: 17px; font-weight: 650; }
.hero-caption strong { font-size: clamp(38px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; }

.intro-copy { max-width: 1050px; }
.intro h2, .portrait h2, .section-title h2, .pricing-head h2, .faq-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 700;
}
.intro h2 span, .portrait h2 span, .section-title h2 span, .pricing-head h2 span, .faq-heading h2 span { color: #86868b; }
.intro-grid {
  margin-top: 68px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.stat-card {
  min-height: 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--gray);
  border-radius: var(--radius);
}
.stat-card strong { color: var(--coral-deep); font-size: clamp(78px, 8vw, 112px); line-height: .8; letter-spacing: -.08em; }
.stat-card p { margin: 0; color: var(--ink-soft); font-size: 18px; line-height: 1.4; letter-spacing: -.01em; }
.stat-card-accent { color: white; background: var(--coral); }
.stat-card-accent strong, .stat-card-accent p { color: white; }

.portrait {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}
.portrait-copy { max-width: 530px; }
.portrait h2 { font-size: clamp(44px, 5vw, 68px); }
.portrait-copy > p:not(.eyebrow) {
  margin: 30px 0 26px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -.015em;
}
.portrait-visual { margin: 0; }
.portrait-visual picture { display: block; height: 720px; overflow: hidden; border-radius: var(--radius); }
.portrait-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.portrait-visual figcaption {
  max-width: 620px;
  margin: 18px 8px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.services { padding-left: max(24px, calc((100vw - var(--wide)) / 2)); padding-right: max(24px, calc((100vw - var(--wide)) / 2)); }
.section-title { width: min(var(--max), 100%); margin: 0 auto 72px; }
.section-title > p:last-child { max-width: 720px; margin: 28px 0 0; color: #a1a1a6; font-size: 22px; line-height: 1.4; }
.service-grid {
  width: min(var(--wide), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 760px;
  display: flex;
  overflow: hidden;
  color: white;
  background: var(--card-night);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 34px;
  flex-direction: column;
}
.service-copy { padding: 42px 42px 24px; }
.card-number { margin: 0 0 28px; color: var(--coral-light); font-size: 14px; font-weight: 650; }
.service-card h3 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.service-card .service-copy > p:not(.card-number) { max-width: 570px; margin: 20px 0 0; color: #a1a1a6; font-size: 17px; line-height: 1.5; }
.service-card details { margin-top: 24px; border-top: 1px solid #3a3a3c; }
.service-card summary {
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--coral-light);
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary span { font-size: 23px; font-weight: 300; transition: transform .25s; }
.service-card details[open] summary span { transform: rotate(45deg); }
.service-card ul { margin: 0 0 12px; padding: 0; display: grid; gap: 10px; color: #d1d1d6; list-style: none; font-size: 14px; }
.service-card li { padding-left: 18px; position: relative; }
.service-card li::before { content: ""; position: absolute; top: .55em; left: 0; width: 5px; height: 5px; background: var(--coral); border-radius: 50%; }
.service-card picture { height: 340px; margin-top: auto; overflow: hidden; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.service-card:hover img { transform: scale(1.025); }
.service-card-accent { color: var(--ink); background: #f2d5d1; border-color: transparent; }
.service-card-accent .card-number, .service-card-accent summary { color: var(--coral-deep); }
.service-card-accent .service-copy > p:not(.card-number), .service-card-accent ul { color: #5f4c4a; }
.service-card-accent details { border-color: rgba(91, 60, 56, .2); }

.pricing-head { max-width: 1100px; }
.pricing-head > p:last-child { max-width: 780px; margin: 28px 0 0; color: var(--muted); font-size: 22px; line-height: 1.45; }
.comparison-grid { margin-top: 70px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.comparison-card {
  min-height: 620px;
  padding: 44px;
  display: flex;
  background: white;
  border-radius: var(--radius);
  flex-direction: column;
}
.comparison-label { margin: 0 0 34px; color: var(--muted); font-size: 15px; font-weight: 650; }
.comparison-card h3 { margin: 0; font-size: clamp(35px, 4vw, 54px); line-height: 1.02; letter-spacing: -.05em; }
.comparison-card h3 span { color: var(--coral-deep); }
.comparison-list { margin: auto 0 0; padding: 36px 0 0; display: grid; gap: 14px; border-top: 1px solid var(--line); list-style: none; }
.comparison-list li { padding-left: 31px; position: relative; color: var(--ink-soft); font-size: 16px; }
.comparison-list li::before { position: absolute; left: 0; top: -1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 700; }
.negative-list li::before { content: "−"; color: #77777b; background: var(--gray-deep); }
.positive-list li::before { content: "✓"; color: white; background: var(--coral); }
.comparison-card-tialeo { color: white; background: var(--ink); }
.comparison-card-tialeo .comparison-label { color: var(--coral-light); }
.comparison-card-tialeo .comparison-list { border-color: #3a3a3c; }
.comparison-card-tialeo .comparison-list li { color: #d1d1d6; }
.proof-row { margin-top: 34px; padding-top: 26px; display: flex; gap: 10px; border-top: 1px solid #3a3a3c; }
.proof-row span { padding: 8px 12px; color: #d1d1d6; background: #2c2c2e; border-radius: 980px; font-size: 12px; }
.mission-card {
  min-height: 500px;
  margin-top: 20px;
  padding: 64px;
  display: flex;
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #ba514b 0%, #dd7469 54%, #eba49c 100%);
  border-radius: 34px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mission-card::before, .mission-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}
.mission-card::before { top: -230px; left: -100px; }
.mission-card::after { right: -100px; bottom: -250px; }
.mission-card .eyebrow { color: white; }
.mission-card h3 { margin: 0; font-size: clamp(52px, 7vw, 90px); line-height: .98; letter-spacing: -.06em; }
.mission-card h3 span { color: #5d211f; }
.mission-card > p:last-child { max-width: 760px; margin: 26px auto 0; font-size: 21px; line-height: 1.45; }

.faq-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.faq-heading { position: sticky; top: 105px; }
.faq-heading h2 { font-size: clamp(43px, 4.8vw, 68px); }
.faq-heading .text-link { display: inline-block; margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -.025em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; color: var(--ink); background: var(--gray); border-radius: 50%; font-size: 23px; font-weight: 300; transition: transform .25s, background .2s; }
.faq-list details[open] summary span { color: white; background: var(--coral); transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -4px 48px 28px 0; color: var(--muted); font-size: 17px; line-height: 1.55; }
.faq-list .confidentiality-answer strong { color: var(--coral-deep); font-weight: 700; }

.contact { padding-top: 50px; }
.contact-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: white;
  background: #1a0f0b;
  border-radius: 38px;
}
.contact-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .35) 58%, rgba(0, 0, 0, .08)); }
.contact-card picture, .contact-card img { width: 100%; height: 100%; position: absolute; inset: 0; }
.contact-card img { object-fit: cover; object-position: center; }
.contact-overlay { position: absolute; z-index: 1; top: 50%; left: clamp(30px, 6vw, 78px); width: min(650px, calc(100% - 60px)); transform: translateY(-50%); }
.contact-overlay .eyebrow { color: var(--coral-light); }
.contact-overlay h2 { margin: 0; font-size: clamp(50px, 6vw, 80px); line-height: .98; letter-spacing: -.055em; }
.contact-overlay h2 span { color: var(--coral-light); }
.contact-overlay > p:not(.eyebrow) { max-width: 590px; margin: 24px 0 0; color: rgba(255, 255, 255, .78); font-size: 20px; line-height: 1.45; }
.contact-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; }
.site-footer { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 28px 0 32px; color: var(--muted); font-size: 13px; }
.footer-top { padding: 28px 0; display: flex; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.footer-top img { width: 90px; height: auto; flex: 0 0 auto; }
.footer-top p { max-width: 530px; margin: 0; line-height: 1.5; }
.footer-bottom { padding-top: 20px; display: flex; gap: 30px; }
.footer-bottom a:hover { color: var(--ink); text-decoration: underline; }
.footer-bottom a:last-child { margin-left: auto; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .section { padding-top: 105px; padding-bottom: 105px; }
  .portrait { grid-template-columns: 1fr; }
  .portrait-copy { max-width: 800px; }
  .portrait-visual picture { height: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 720px; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-heading { position: static; max-width: 720px; }
}

@media (max-width: 760px) {
  .desktop-nav { display: none; }
  .nav-shell { justify-content: flex-end; gap: 12px; }
  .brand { position: absolute; left: 0; width: 88px; }
  .menu-toggle {
    width: 36px;
    height: 36px;
    padding: 9px;
    display: flex;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
  }
  .menu-toggle span { width: 18px; height: 1px; display: block; background: var(--ink); transition: transform .2s; }
  .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 {
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    height: calc(100vh - 54px);
    padding: 30px 24px;
    display: flex;
    visibility: hidden;
    opacity: 0;
    background: rgba(250, 250, 252, .98);
    flex-direction: column;
    transform: translateY(-8px);
    transition: opacity .2s, transform .2s, visibility .2s;
  }
  .mobile-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav a { padding: 12px 0; font-size: 30px; font-weight: 650; letter-spacing: -.04em; border-bottom: 1px solid var(--line); }
  .hero { padding: 72px 16px 8px; }
  .hero-copy { margin-bottom: 42px; }
  .hero h1 { font-size: clamp(50px, 14vw, 74px); }
  .hero-intro { font-size: 20px; }
  .hero-actions { flex-direction: column; gap: 14px; }
  .hero-stage { height: 118vw; min-height: 520px; border-radius: 26px; }
  .hero-stage img { object-position: 82% center; }
  .hero-stage::after { background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, .82) 100%); }
  .hero-caption { left: 26px; right: 26px; bottom: 32px; }
  .hero-caption strong { font-size: 41px; }
  .section { padding: 86px 18px; }
  .intro h2, .portrait h2, .section-title h2, .pricing-head h2, .faq-heading h2 { font-size: 45px; }
  .intro-grid { margin-top: 44px; grid-template-columns: 1fr; }
  .stat-card { min-height: 230px; padding: 28px; }
  .portrait-visual picture { height: 122vw; max-height: 650px; border-radius: 24px; }
  .section-title { margin-bottom: 44px; }
  .service-grid { gap: 14px; }
  .service-card { min-height: 700px; border-radius: 26px; }
  .service-copy { padding: 30px 26px 20px; }
  .service-card h3 { font-size: 36px; }
  .service-card picture { height: 300px; }
  .comparison-grid { margin-top: 46px; grid-template-columns: 1fr; }
  .comparison-card { min-height: 570px; padding: 30px; border-radius: 24px; }
  .proof-row { flex-wrap: wrap; }
  .mission-card { min-height: 520px; padding: 38px 24px; border-radius: 26px; }
  .mission-card h3 { font-size: 54px; }
  .faq-list summary { padding: 24px 0; font-size: 19px; }
  .faq-list details p { margin-right: 0; }
  .contact { padding-top: 30px; }
  .contact-card { min-height: 680px; border-radius: 26px; }
  .contact-card::after { background: linear-gradient(180deg, rgba(0, 0, 0, .12) 18%, rgba(0, 0, 0, .88) 100%); }
  .contact-card img { object-position: 58% center; }
  .contact-overlay { top: auto; bottom: 36px; left: 26px; width: calc(100% - 52px); transform: none; }
  .contact-overlay h2 { font-size: 46px; }
  .contact-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .site-footer { width: calc(100% - 36px); }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-bottom { flex-wrap: wrap; gap: 14px 24px; }
  .footer-bottom a:last-child { width: 100%; margin: 6px 0 0; }
}

@media (max-width: 390px) {
  .nav-cta { padding: 8px 13px; }
  .hero h1 { font-size: 48px; }
  .intro h2, .portrait h2, .section-title h2, .pricing-head h2, .faq-heading h2 { font-size: 39px; }
  .service-card h3 { font-size: 32px; }
  .contact-overlay h2 { font-size: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
