@font-face { font-family: 'Neue Montreal'; src: url('assets/fonts/NeueMontreal-Light.woff2') format('woff2'), url('assets/fonts/NeueMontreal-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neue Montreal'; src: url('assets/fonts/NeueMontreal-Regular.woff2') format('woff2'), url('assets/fonts/NeueMontreal-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neue Montreal'; src: url('assets/fonts/NeueMontreal-Medium.woff2') format('woff2'), url('assets/fonts/NeueMontreal-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
  @font-face { font-family: 'Neue Montreal'; src: url('assets/fonts/NeueMontreal-Bold.woff2') format('woff2'), url('assets/fonts/NeueMontreal-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
  @font-face { font-family: 'FH Oscar'; src: url('assets/fonts/FHOscar-Regular.woff2') format('woff2'), url('assets/fonts/FHOscar-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
  @font-face { font-family: 'FH Oscar'; src: url('assets/fonts/FHOscar-Medium.woff2') format('woff2'), url('assets/fonts/FHOscar-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
  @font-face { font-family: 'FH Oscar'; src: url('assets/fonts/FHOscar-SemiBold.woff2') format('woff2'), url('assets/fonts/FHOscar-SemiBold.otf') format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }

  :root {
    /* Real Orion brand tokens, pulled from the live Webflow CSS */
    --bg: #FAFBF8;          /* warm cream background */
    --bg-soft: #F1F2EE;     /* platinum */
    --border: #E8E9E5;      /* sage grey */
    --text: #322424;        /* warm near-black */
    --text-deep: #141313;   /* jet */
    --muted: #635B5B;       /* warm grey text (WCAG AA: 5.9:1 on platinum, 6.4:1 on cream) */
    --green: #076873;       /* primary brand petrol-green */
    --green-dark: #123E44;  /* dark green sections */
    --pine: #26422B;
    --orange: #D33F00;      /* accent / CTA (WCAG AA: white text 4.7:1) */
    --orange-hover: #BC3800;
    --coral: #FF6D50;
    --blue-soft: #C0E7FF;
    --mint: #DFFFFD;

    --radius: 14px;
    --maxw: 1140px;
    --shadow: 0 10px 40px rgba(50, 36, 36, 0.07);
    --shadow-lg: 0 24px 70px rgba(18, 62, 68, 0.14);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  html, body { overflow-x: hidden; max-width: 100%; }
  img { max-width: 100%; height: auto; }
  svg { max-width: 100%; }
  body {
    font-family: 'Neue Montreal', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
  h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
  a { color: inherit; text-decoration: none; }
  .accent { color: var(--green); }

  /* Buttons */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--orange); color: #fff; font-weight: 600; font-size: 16px;
    padding: 13px 24px; border-radius: 14px; border: none; cursor: pointer;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    box-shadow: 0 8px 24px rgba(255, 75, 0, 0.22);
  }
  .btn:hover { background: var(--orange-hover); transform: translateY(-1px); }
  .btn svg { width: 18px; height: 18px; }
  .btn-ghost {
    background: transparent; color: var(--text); box-shadow: none;
    border: 1.5px solid var(--border); font-weight: 600;
  }
  .btn-ghost:hover { background: var(--bg-soft); border-color: var(--muted); }

  /* Header */
  header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(250,251,248,0.85); backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
  }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
  .brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--text); }
  .brand .mark {
    width: 30px; height: 30px; border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--green));
    display: grid; place-items: center; color: #fff; font-size: 16px; font-weight: 700;
  }
  .nav-cta { display: flex; align-items: center; gap: 14px; }

  /* Hero */
  .hero {
    background:
      radial-gradient(1100px 460px at 82% -12%, rgba(7,104,115,0.07), transparent 60%),
      var(--bg);
    padding: 60px 0 56px;
  }
  .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
  .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-soft); border: 1px solid var(--border);
    color: var(--text); font-weight: 500; font-size: 13px;
    padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
  }
  .badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
  .hero h1 { font-size: 50px; color: var(--text-deep); margin-bottom: 18px; }
  .hero .sub { font-size: 18px; color: var(--muted); max-width: 520px; margin-bottom: 26px; line-height: 1.6; }
  .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .hero-note { font-size: 14px; color: var(--muted); margin-top: 16px; }

  /* Form card */
  .form-card {
    background: #fff; border: 1px solid var(--border); border-radius: 18px;
    box-shadow: var(--shadow-lg); padding: 30px;
  }
  .form-card h3, .form-card h2 { font-size: 21px; color: var(--text-deep); margin-bottom: 6px; }
  .form-card p.lead { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
  .field { margin-bottom: 14px; }
  .field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
  .field input {
    width: 100%; padding: 13px 14px; font-size: 15px; font-family: inherit;
    border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg);
    transition: border .15s ease, background .15s ease;
  }
  .field input:focus { outline: none; border-color: var(--green); background: #fff; }
  .form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
  .form-card .fineprint { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

  /* Trust bar */
  .trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-soft); padding: 26px 0; }
  .trust p { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
  .logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 36px; }
  .logos span { font-weight: 600; font-size: 17px; color: #635B5B; letter-spacing: -0.01em; }

  /* Section shell */
  section.block { padding: 72px 0; }
  .eyebrow { color: var(--green); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
  .section-head { max-width: 680px; margin-bottom: 44px; }
  .section-head h1, .section-head h2 { font-size: 35px; color: var(--text-deep); margin-bottom: 12px; }
  .section-head p { font-size: 17px; color: var(--muted); line-height: 1.6; }
  .center { text-align: center; margin-left: auto; margin-right: auto; }

  /* Problem (light, brand-airy) */
  .problem { background: var(--bg-soft); }
  .problem .eyebrow { color: #BD3800; } /* darker orange: AA on tinted bg (5.0:1) */
  .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .problem-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 26px; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
  .problem-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--coral)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
  .problem-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(255,75,0,.35); }
  .problem-card:hover::before { transform: scaleX(1); }
  .problem-card .pico { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,75,0,.10); display: grid; place-items: center; margin-bottom: 18px; transition: background .25s ease; }
  .problem-card:hover .pico { background: rgba(255,75,0,.18); }
  .problem-card .pico svg { width: 25px; height: 25px; stroke: var(--orange); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .problem-card h3 { font-size: 18px; color: var(--text-deep); margin-bottom: 10px; }
  .problem-card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

  /* Feature rows (alternating image + text) */
  .feature-rows { display: grid; gap: 64px; }
  .feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .feature-row.flip .feature-text { order: 2; }
  .feature-row.flip .feature-visual { order: 1; }
  .feature-text .ico { display: none; }
  .feature-text::before { content: ""; display: block; width: 48px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--green), var(--orange)); margin-bottom: 22px; }
  .feature-text h3 { font-size: 27px; color: var(--text-deep); margin-bottom: 12px; }
  .feature-text p { font-size: 17px; color: var(--muted); line-height: 1.6; }
  /* Premium visual panel: soft brand gradient + decorative shapes, image floats on top */
  .feature-visual { position: relative; border-radius: 22px; padding: 32px; overflow: hidden;
    background: linear-gradient(160deg, #EAF7F6 0%, #C2E4E8 55%, #97CFD6 100%); }
  .feature-visual::before { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%;
    background: rgba(255,255,255,0.42); top: -84px; right: -70px; }
  .feature-visual::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%;
    background: rgba(7,104,115,0.12); bottom: -46px; left: -36px; }
  .feature-visual img { position: relative; width: 100%; display: block; border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.65); box-shadow: 0 18px 50px rgba(18,62,68,0.20); }
  .feat-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 20px; padding: 0; }
  .feat-checks li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 500; color: var(--text); }
  .feat-checks .ck { width: 18px; height: 18px; flex-shrink: 0; }
  .visual-ph {
    aspect-ratio: 4 / 3; background: var(--bg-soft); border: 1px solid var(--border);
    border-radius: 16px; box-shadow: var(--shadow); display: grid; place-items: center; gap: 10px; align-content: center;
  }
  .visual-ph svg { width: 34px; height: 34px; stroke: #C3BBBB; }
  .visual-ph span { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #B9B0B0; }

  /* Agents */
  .agents { background: var(--bg-soft); }
  .agent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .agent {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 30px; position: relative; overflow: hidden;
  }
  .agent::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--green), var(--orange)); }
  .agent .name { font-size: 22px; font-weight: 700; color: var(--text-deep); margin-bottom: 4px; }
  .agent .role { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green); margin-bottom: 14px; }
  .agent p { font-size: 15px; color: var(--muted); }

  /* Pricing strip */
  .pricing { text-align: center; }
  .pricing .section-head { margin-left: auto; margin-right: auto; }
  .pricing .pill { display: inline-block; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: 8px 18px; font-size: 14px; color: var(--text); font-weight: 600; margin-top: 8px; }

  /* FAQ */
  .faq-list { max-width: 820px; margin: 0 auto; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 0; font-size: 18px; font-weight: 600; color: var(--text-deep); display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; }
  .faq-q .pm { font-size: 24px; color: var(--orange); flex-shrink: 0; transition: transform .2s ease; }
  .faq-a { font-size: 16px; color: var(--muted); padding: 0 0 22px; display: none; max-width: 700px; }
  .faq-item.open .faq-a { display: block; }
  .faq-item.open .pm { transform: rotate(45deg); }

  /* Final CTA */
  .final {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .final h2 { font-size: 37px; color: var(--text-deep); margin-bottom: 14px; }
  .final p { font-size: 18px; color: var(--muted); max-width: 540px; margin: 0 auto 28px; line-height: 1.6; }
  .final-form { max-width: 460px; margin: 0 auto; display: grid; gap: 12px; }
  .final-form input {
    width: 100%; padding: 14px 16px; font-size: 15px; font-family: inherit;
    border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--text);
  }
  .final-form input::placeholder { color: var(--muted); }
  .final-form input:focus { outline: none; border-color: var(--green); background: #fff; }
  .final-form .btn { width: 100%; justify-content: center; }
  .final .fineprint { font-size: 13px; color: var(--muted); margin-top: 14px; }

  /* Footer (light, multi-column) */
  footer { background: var(--bg-soft); border-top: 1px solid var(--border); color: var(--text); padding: 60px 0 28px; }
  .footer-top { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 28px; }
  .footer-news .logo-img { height: 28px; margin-bottom: 16px; }
  .footer-tag { font-size: 15px; color: var(--muted); margin-bottom: 16px; max-width: 290px; line-height: 1.5; }
  .footer-signup { display: flex; gap: 8px; margin-bottom: 24px; max-width: 330px; }
  .footer-signup input { flex: 1; padding: 11px 13px; font-size: 14px; font-family: inherit; border: 1.5px solid var(--border); border-radius: 10px; background: #fff; color: var(--text); }
  .footer-signup input:focus { outline: none; border-color: var(--green); }
  .footer-signup .btn { padding: 11px 18px; font-size: 14px; background: var(--green); box-shadow: none; }
  .footer-signup .btn:hover { background: #0a5a64; }
  .footer-contact { font-size: 14px; color: var(--muted); line-height: 1.7; }
  .footer-contact strong { color: var(--text-deep); }
  .footer-contact p { margin-bottom: 10px; }
  .footer-col h3 { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--text-deep); margin-bottom: 16px; }
  .footer-col a { display: block; font-size: 14.5px; color: var(--muted); margin-bottom: 11px; }
  .footer-col a:hover { color: var(--green); }
  @media (max-width: 700px) { .footer-col a { padding: 6px 0; margin-bottom: 4px; } }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); margin-top: 44px; padding-top: 24px; }
  .footer-social { display: flex; gap: 16px; }
  .footer-social a { color: var(--muted); display: inline-flex; }
  .footer-social a:hover { color: var(--green); }
  .footer-social svg { width: 20px; height: 20px; }
  .footer-copy { font-size: 13.5px; color: var(--muted); }

  /* Brand logo */
  .logo-img { height: 30px; width: auto; display: block; }

  /* HIPAA badge in hero */
  .hipaa-hero { height: 22px; width: auto; max-width: 100%; margin-top: 22px; display: block; opacity: 0.85; }

  /* Agent card icon */
  .agent-ico { width: 54px; height: 54px; border-radius: 13px; background: rgba(7,104,115,0.10); display: grid; place-items: center; margin-bottom: 20px; }
  .agent-ico svg { width: 27px; height: 27px; stroke: var(--green); }

  /* Mobile */
  @media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero h1 { font-size: 40px; }
    .problem-grid, .agent-grid { grid-template-columns: 1fr; }
    .feature-rows { gap: 44px; }
    .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 24px; }
    .feature-row.flip .feature-text { order: 1; }
    .feature-row.flip .feature-visual { order: 2; }
    .feature-text h3 { font-size: 23px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-news { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
    .section-head h2, .final h2 { font-size: 30px; }
    .nav-cta .btn-ghost { display: none; }
    section.block { padding: 60px 0; }
    .btn { width: auto; }
  }

/* ---- Pricing page ---- */
.incl { max-width: 780px; margin: 8px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 36px; }
.incl li { list-style: none; display: flex; align-items: flex-start; gap: 10px; font-size: 16px; color: var(--text); }
.incl .ck { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.price-cta { text-align: center; margin-top: 36px; }
@media (max-width: 900px) { .incl { grid-template-columns: 1fr; } }

/* ---- Vertical pages ---- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.safety { max-width: 860px; margin: 28px auto 0; background: #FFF7F4; border: 1px solid #F3C9BC; border-left: 4px solid var(--orange); border-radius: 12px; padding: 20px 24px; }
.safety strong { color: var(--text-deep); display: block; margin-bottom: 6px; font-size: 15px; }
.safety p { font-size: 15px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .twocol { grid-template-columns: 1fr; } }

/* ---- Industries hub ---- */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ind-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: box-shadow .2s ease, transform .2s ease; }
.ind-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--green); }
.ind-card h3 { font-size: 18px; color: var(--text-deep); margin-bottom: 6px; }
.ind-card p { font-size: 14.5px; color: var(--muted); line-height: 1.5; }
.ind-card .arrow { color: var(--green); font-weight: 600; font-size: 13px; margin-top: 12px; display: inline-block; }
@media (min-width: 901px) and (max-width: 1080px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .ind-grid { grid-template-columns: 1fr; } }

/* ---- Agent cards: richer treatment ---- */
.agent { transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease; }
.agent:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.agent-ico { width: 50px; height: 50px; border-radius: 13px; background: rgba(7,104,115,0.10); display: grid; place-items: center; margin-bottom: 18px; }
.agent-ico svg { width: 26px; height: 26px; stroke: var(--green); }
.agent-checks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 9px; border-top: 1px solid var(--border); padding-top: 16px; }
.agent-checks li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 500; color: var(--text); }
.agent-checks .ck { width: 17px; height: 17px; flex-shrink: 0; }

/* ---- Entrance animation: pure CSS, auto-plays on load, never hides content via JS ---- */
@keyframes orionUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: no-preference) {
  .hero h1 { animation: orionUp .7s .05s both; }
  .hero .sub { animation: orionUp .7s .15s both; }
  .hero-actions { animation: orionUp .7s .25s both; }
  .hero-note { animation: orionUp .7s .33s both; }
  .hipaa-hero { animation: orionUp .7s .4s both; }
  .form-card { animation: orionUp .8s .18s both; }
  .section-head { animation: orionUp .7s both; }
  .problem-card, .agent, .feature-row, .ptier, .inc-item, .stack-card, .incl, .safety, .compare-wrap { animation: orionUp .7s both; }
  .problem-grid > *:nth-child(2), .agent-grid > *:nth-child(2), .ind-grid > *:nth-child(2), .ptiers > *:nth-child(2) { animation-delay: .09s; }
  .problem-grid > *:nth-child(3), .agent-grid > *:nth-child(3), .ind-grid > *:nth-child(3), .ptiers > *:nth-child(3) { animation-delay: .18s; }
  .ind-grid > *:nth-child(n+4) { animation-delay: .22s; }
}

/* ---- Progressive enhancement: when JS + anime.js are present (html.js),
   anime drives all motion. Disable the CSS fallback entrance and pre-hide the
   hero so anime can reveal it with no flash. Scoped to no-preference so
   reduced-motion users keep everything visible and unanimated. ---- */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero h1, html.js .hero .sub, html.js .hero-actions, html.js .hero-note,
  html.js .hipaa-hero, html.js .form-card, html.js .section-head, html.js .problem-card,
  html.js .agent, html.js .feature-row, html.js .ptier, html.js .inc-item,
  html.js .incl, html.js .safety, html.js .compare-wrap { animation: none !important; }

  html.js .hero h1, html.js .hero .badge, html.js .hero .sub, html.js .hero-actions,
  html.js .hero-note, html.js .hipaa-hero, html.js .form-card { opacity: 0; }
}

/* ---- Sticky card stack (scroll effect) ---- */
.stack { max-width: 900px; margin: 0 auto; }
.stack-card { position: sticky; border-radius: 22px; padding: 44px 46px; color: #fff; box-shadow: var(--shadow-lg); margin-bottom: 26px; overflow: hidden; }
.stack-card:last-child { margin-bottom: 0; }
.stack-card .step { font-size: 13px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.stack-card h3 { font-size: 30px; margin-bottom: 12px; color: #fff; }
.stack-card p { font-size: 17px; line-height: 1.6; color: #fff; max-width: 560px; }
.stack-1 { top: 92px; background: linear-gradient(150deg, #123E44, #0A2E33); }
.stack-2 { top: 114px; background: linear-gradient(150deg, #076873, #05525B); }
.stack-3 { top: 136px; background: linear-gradient(150deg, var(--orange), var(--orange-hover)); }
@media (max-width: 900px) { .stack-card { position: static; padding: 32px; } .stack-card h3 { font-size: 24px; } }

/* ---- Full nav (text links + one CTA) ---- */
.nav-cta { gap: 24px; }
.nav-link { font-size: 15px; font-weight: 500; color: var(--text); white-space: nowrap; }
.nav-link:hover { color: var(--green); }
@media (max-width: 1000px) { .nav-link { display: none; } }

/* ---- Mobile nav: hamburger + full-screen menu ---- */
.nav-burger { display: none; }
@media (max-width: 1000px) {
  .nav-burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 11px; margin-left: 4px; background: none; border: none; cursor: pointer; }
  .nav-burger span { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--text-deep); transition: transform .25s ease, opacity .2s ease; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
.mobile-menu { position: fixed; inset: 0; z-index: 990; background: var(--bg); padding: 88px 24px 40px; overflow-y: auto;
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .28s ease, transform .28s ease, visibility .28s; }
html.menu-open .mobile-menu { transform: none; opacity: 1; visibility: visible; }
html.menu-open { overflow: hidden; }
html.menu-open header { z-index: 1000; background: var(--bg); }
.mobile-menu-inner { display: flex; flex-direction: column; max-width: 480px; margin: 0 auto; }
.mobile-menu-inner a { font-size: 22px; font-weight: 600; color: var(--text-deep); padding: 18px 4px; border-bottom: 1px solid var(--border); text-decoration: none; }
.mobile-menu-inner a:active { color: var(--green); }
.mobile-menu-inner a.mobile-menu-cta { margin-top: 24px; border-bottom: none; color: #fff; font-size: 17px; justify-content: center; padding: 16px; }

/* ---- Pricing tiers ---- */
.ptiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.ptier { background:#fff; border:1px solid var(--border); border-radius:18px; padding:32px; display:flex; flex-direction:column; }
.ptier.popular { background: var(--green-dark); border-color: var(--green-dark); box-shadow: var(--shadow-lg); }
.ptier .tag { font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--orange); margin-bottom:14px; }
.ptier.popular .tag { color:#fff; opacity:.9; text-align:center; border-bottom:1px solid rgba(255,255,255,.18); padding-bottom:16px; }
.ptier .name { font-size:24px; font-weight:700; color: var(--text-deep); margin-bottom:8px; }
.ptier.popular .name { color:#fff; }
.ptier .price { font-size:38px; font-weight:700; color: var(--text-deep); line-height:1; margin:4px 0 6px; }
.ptier .price span { font-size:15px; font-weight:500; color: var(--muted); }
.ptier .price small { display:block; font-size:12.5px; font-weight:500; color: var(--muted); margin-top:8px; }
.ptier.popular .price { color:#fff; }
.ptier.popular .price span, .ptier.popular .price small { color:#C7D6D5; }
.ptier .desc { font-size:15px; color: var(--muted); line-height:1.55; margin-bottom:24px; flex:1; }
.ptier.popular .desc { color:#C7D6D5; }
.ptier .btn { width:100%; justify-content:center; }
.ptier.popular .btn { background:#fff; color: var(--green-dark); box-shadow:none; }
.ptier.popular .btn:hover { background:#eef0ef; }
@media(max-width:900px){ .ptiers{ grid-template-columns:1fr; } }

/* Included with every plan */
.included { display:flex; justify-content:center; flex-wrap:wrap; gap:40px; }
.inc-item { text-align:center; max-width:170px; }
.inc-item .ico { width:54px;height:54px;border-radius:14px;background:rgba(7,104,115,.10);display:grid;place-items:center;margin:0 auto 12px; }
.inc-item .ico svg{ width:26px;height:26px;stroke:var(--green); }
.inc-item span{ font-size:14px;color:var(--text);font-weight:500; }

/* Legal / article prose pages */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 24px 40px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); color: var(--text-deep); margin-bottom: 10px; line-height: 1.12; }
.legal .updated { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 21px; color: var(--text-deep); margin: 34px 0 10px; }
.legal p, .legal li { font-size: 16px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 12px; }
.legal a { color: var(--green); font-weight: 600; }
.draft-banner { max-width: 760px; margin: 24px auto 0; background: rgba(255,75,0,.07); border: 1px solid rgba(189,56,0,.35); border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--text); line-height: 1.55; }
.draft-banner strong { color: #BD3800; }

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 980px; margin: 0 auto; }
.contact-ways { display: flex; flex-direction: column; gap: 22px; }
.contact-way { display: flex; gap: 14px; align-items: flex-start; }
.contact-way .ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(7,104,115,.10); display: grid; place-items: center; flex-shrink: 0; }
.contact-way .ico svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-way .cw-label { font-size: 16px; color: var(--text-deep); margin-bottom: 2px; }
.contact-way p, .contact-way a { font-size: 15px; color: var(--muted); }
.contact-way a { color: var(--green); font-weight: 600; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Accessibility: skip-to-content link (hidden until keyboard-focused) */
.skip-link { position: absolute; top: -100px; left: 12px; background: var(--green-dark); color: #fff; padding: 12px 18px; border-radius: 10px; font-weight: 600; font-size: 14.5px; text-decoration: none; z-index: 2000; transition: top .15s ease; }
.skip-link:focus { top: 12px; outline: 3px solid #fff; outline-offset: 2px; }

/* Keyboard focus: visible ring on every interactive element */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px;
}
.btn:focus-visible { outline-offset: 3px; }
.ptier.popular .btn:focus-visible, .compare .pop .btn:focus-visible { outline-color: #fff; }

/* CLS protection now comes from intrinsic width/height attributes on each
   <img> (correct per-image ratio), not forced CSS aspect-ratios. */

/* Industry-page specialty indicator (breadcrumb + icon at top of hero) */
.hero-bc { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 13px; font-weight: 600; flex-wrap: wrap; }
.hero-bc a { color: var(--muted); text-decoration: none; transition: color .2s ease; }
.hero-bc a:hover { color: var(--green); }
.hero-bc .sep { color: var(--muted); opacity: .55; }
.hero-bc .spec { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(7,104,115,.10); border-radius: 999px; color: var(--green); font-weight: 700; font-size: 13.5px; }
.hero-bc .spec svg { width: 16px; height: 16px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Example conversations on industry pages (SMS thread + voice summary) */
.examples { background: var(--bg-soft); }
.ex-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ex-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.ex-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.ex-head .ex-ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(7,104,115,0.10); display: grid; place-items: center; flex-shrink: 0; }
.ex-head .ex-ico svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ex-head strong { font-size: 16px; color: var(--text-deep); display: block; line-height: 1.2; }
.ex-head span { font-size: 13px; color: var(--muted); }
.ex-thread { display: flex; flex-direction: column; gap: 9px; }
.bub { max-width: 86%; padding: 10px 14px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; }
.bub.orion { background: var(--green); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.bub.patient { background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; }
.ex-call { display: flex; flex-direction: column; }
.ex-row { display: flex; gap: 12px; font-size: 14.5px; line-height: 1.5; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ex-row:last-child { border-bottom: none; }
.ex-row .lbl { flex-shrink: 0; width: 96px; font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding-top: 3px; }
.ex-row span:last-child { color: var(--text); }
.ex-row.outcome span:last-child { color: var(--green); font-weight: 600; }
@media (max-width: 900px) { .ex-grid { grid-template-columns: 1fr; } }

/* Results / stats bar (real Orion numbers) */
.statbar { background: linear-gradient(135deg, var(--green-dark), #0A2E33); }
.stat-eyebrow { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #6ee7a8; margin-bottom: 34px; }
.statbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.statbar .stat .num { font-size: 46px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.statbar .stat .lbl { font-size: 14px; color: #C7D6D5; margin: 12px auto 0; line-height: 1.45; max-width: 200px; }
@media (max-width: 900px) { .statbar-grid { grid-template-columns: repeat(2, 1fr); gap: 38px 16px; } .statbar .stat .num { font-size: 38px; } }

/* Compare table */
.compare-wrap { overflow-x:auto; -webkit-overflow-scrolling: touch; }
.compare-hint { display:none; }
@media (max-width:700px) {
  .compare-hint { display:block; text-align:right; font-size:13px; font-weight:600; color:var(--green); margin:0 2px 8px; }
}
.compare { width:100%; border-collapse:separate; border-spacing:0; min-width:680px; }
.compare th, .compare td { padding:15px 20px; text-align:center; border-bottom:1px solid var(--border); font-size:15px; color:var(--text); }
.compare th:first-child, .compare td:first-child { text-align:left; font-weight:600; color:var(--text-deep); }

/* Header: plan name + price + CTA stacked in each column (Weave-style) */
.compare thead th { vertical-align:bottom; border-bottom:none; padding:10px 20px 22px; }
.compare .plan-badge { font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--orange); margin-bottom:8px; }
.compare .plan-name { font-size:20px; font-weight:700; color:var(--text-deep); }
.compare .plan-price { font-size:15px; color:var(--muted); margin:4px 0 16px; font-weight:600; }
.compare .plan-price span { font-size:13px; font-weight:500; }
.compare .plan-price small { display:block; font-size:11.5px; font-weight:500; color:var(--muted); margin-top:2px; }
.compare thead .btn { width:auto; padding:11px 26px; justify-content:center; }

/* Popular column = one continuous dark-green block, rounded top + bottom */
.compare .pop { background:var(--green-dark); color:#fff; }
.compare thead th.pop { border-radius:18px 18px 0 0; padding-top:26px; }
.compare tbody tr:last-child td.pop { border-radius:0 0 18px 18px; }
.compare .pop .plan-name { color:#fff; }
.compare .pop .plan-badge { color:#fff; opacity:.85; }
.compare .pop .plan-price, .compare .pop .plan-price small { color:#C7D6D5; }
.compare tbody td.pop { border-bottom:1px solid rgba(255,255,255,.12); }
.compare tbody tr:last-child td.pop { border-bottom:none; }
.compare .pop .btn { background:#fff; color:var(--green-dark); box-shadow:none; }
.compare .pop .btn:hover { background:#eef0ef; }

/* Checks / values */
.compare .ckm { color:var(--green); font-weight:700; font-size:18px; }
.compare .pop .ckm { color:#6ee7a8; }
.compare .dash { color:#C3BBBB; }
.compare .pop .dash { color:rgba(255,255,255,.45); }
.compare tbody tr:hover td:not(.pop) { background:var(--bg-soft); }
.compare tbody td:first-child { font-size:14.5px; }

/* ---- Booking modal (global) ---- */
.modal-overlay { position: fixed; inset: 0; background: rgba(18,19,19,0.55); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 200; opacity: 0; visibility: hidden; transition: opacity .25s ease; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: #fff; border-radius: 18px; max-width: 460px; width: 100%; padding: 34px; box-shadow: var(--shadow-lg); position: relative; transform: translateY(18px) scale(.98); transition: transform .28s cubic-bezier(.2,.7,.3,1); max-height: 92vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: none; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 9px; border: none; background: var(--bg-soft); color: var(--muted); font-size: 22px; cursor: pointer; line-height: 1; display: grid; place-items: center; }
.modal-close:hover { background: var(--border); color: var(--text); }
.modal h3, .modal h2 { font-size: 22px; color: var(--text-deep); margin-bottom: 6px; }
.modal .lead { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.modal .eyebrow { color: var(--green); margin-bottom: 10px; }

/* ---- Integrations logo wall ---- */
.logo-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.logo-tile { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 26px 18px; text-align: center; font-weight: 700; font-size: 17px; color: var(--text); display: flex; align-items: center; justify-content: center; min-height: 92px; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease; }
.logo-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--green); }
.logo-tile img { max-height: 38px; max-width: 80%; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s ease, opacity .2s ease; }
.logo-tile:hover img { filter: grayscale(0); opacity: 1; }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }
.api-note { display: flex; gap: 16px; align-items: flex-start; max-width: 680px; margin: 32px auto 0; background: rgba(7,104,115,.05); border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; }
.api-note svg { width: 26px; height: 26px; flex-shrink: 0; stroke: var(--green); margin-top: 2px; }
.api-note p { font-size: 15px; color: var(--muted); line-height: 1.55; margin: 0; }
.api-note strong { color: var(--text-deep); }

/* Industries intro strip */
.ind-strip { padding-top: 56px; padding-bottom: 8px; }
.ind-strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ind-strip-item { border-top: 2px solid var(--green); padding-top: 18px; }
.ind-strip-num { font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: .08em; }
.ind-strip-item h3, .ind-strip-item .ind-strip-h { font-size: 19px; font-weight: 700; color: var(--text-deep); margin: 8px 0 8px; }
.ind-strip-item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }
@media (max-width: 900px) { .ind-strip-grid { grid-template-columns: 1fr; gap: 22px; } }

/* Integrations connect flow */
.connect-flow { display: flex; align-items: stretch; justify-content: center; gap: 8px; max-width: 980px; margin: 0 auto; }
.connect-step { flex: 1; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px 22px; text-align: center; }
.connect-num { width: 40px; height: 40px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 700; font-size: 17px; display: grid; place-items: center; margin: 0 auto 14px; }
.connect-step h3 { font-size: 17px; color: var(--text-deep); margin-bottom: 8px; }
.connect-step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.connect-arrow { display: flex; align-items: center; color: var(--green); flex-shrink: 0; }
.connect-arrow svg { width: 26px; height: 26px; }
@media (max-width: 760px) { .connect-flow { flex-direction: column; } .connect-arrow { transform: rotate(90deg); justify-content: center; padding: 4px 0; } }

/* Floating chat widget (fallback until Intercom App ID is set) */
/* Container must NOT capture taps: the closed panel still occupies layout, so
   without this the invisible box eats clicks over the footer/content (esp. mobile).
   Only the launcher and the OPEN panel are interactive. */
.orion-chat { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; pointer-events: none; }
.orion-chat-launcher { pointer-events: auto; }
.orion-chat.open .orion-chat-panel { pointer-events: auto; }
.orion-chat-launcher { width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer; background: var(--green); color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(7,104,115,.35); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; align-self: flex-end; }
.orion-chat-launcher:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 12px 30px rgba(7,104,115,.45); background: var(--green-dark); }
.orion-chat-launcher svg { width: 26px; height: 26px; }
@media (prefers-reduced-motion: no-preference) { .orion-chat-launcher { animation: orionUp .5s .6s both; } }

.orion-chat-panel { width: 372px; max-width: calc(100vw - 32px); height: 520px; max-height: calc(100vh - 120px); background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 24px 60px rgba(20,19,19,.22); display: flex; flex-direction: column; overflow: hidden; transform-origin: bottom right; opacity: 0; transform: translateY(16px) scale(.96); pointer-events: none; transition: opacity .22s ease, transform .22s ease; }
.orion-chat.open .orion-chat-panel { opacity: 1; transform: none; pointer-events: auto; }

.orion-chat-head { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; padding: 20px 18px; }
.orion-chat-head { display: flex; align-items: center; justify-content: space-between; }
.orion-chat-id { display: flex; align-items: center; gap: 12px; }
.orion-chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: #fff; display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.orion-chat-avatar img { width: 100%; height: 100%; object-fit: cover; }
.orion-chat-id strong { display: block; font-size: 16px; line-height: 1.2; }
.orion-chat-status { font-size: 12px; opacity: .85; display: flex; align-items: center; gap: 6px; }
.orion-chat-status i { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; display: inline-block; }
.orion-chat-x { background: rgba(255,255,255,.14); border: none; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; display: grid; place-items: center; transition: background .15s ease; }
.orion-chat-x:hover { background: rgba(255,255,255,.28); }
.orion-chat-x svg { width: 16px; height: 16px; }

.orion-chat-body { flex: 1; overflow-y: auto; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; background: var(--bg-soft); }
.orion-msg { max-width: 84%; padding: 11px 14px; border-radius: 14px; font-size: 14.5px; line-height: 1.5; }
.orion-msg.bot { background: #fff; border: 1px solid var(--border); color: var(--text); border-bottom-left-radius: 4px; align-self: flex-start; }
.orion-msg.user { background: var(--green); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.orion-msg a { color: var(--green); font-weight: 600; }
.orion-msg.user a { color: #fff; text-decoration: underline; }
.orion-msg.typing { display: flex; gap: 4px; align-items: center; }
.orion-msg.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); opacity: .5; animation: orionTyping 1s infinite; }
.orion-msg.typing span:nth-child(2) { animation-delay: .15s; }
.orion-msg.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes orionTyping { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }

.orion-quick { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 4px; }
.orion-quick button { background: #fff; border: 1px solid var(--green); color: var(--green); font-weight: 600; font-size: 13.5px; padding: 9px 14px; border-radius: 999px; cursor: pointer; transition: background .15s ease, color .15s ease; }
.orion-quick button:hover { background: var(--green); color: #fff; }

.orion-chat-foot { display: flex; align-items: center; gap: 8px; padding: 12px; border-top: 1px solid var(--border); background: #fff; }
.orion-chat-foot input { flex: 1; border: none; outline: none; font-size: 14.5px; padding: 8px 6px; color: var(--text); font-family: inherit; }
.orion-chat-foot button { background: var(--green); border: none; color: #fff; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; display: grid; place-items: center; flex-shrink: 0; transition: background .15s ease; }
.orion-chat-foot button:hover { background: var(--green-dark); }
.orion-chat-foot button svg { width: 18px; height: 18px; }

@media (max-width: 600px) { .orion-chat { bottom: 18px; right: 18px; left: 18px; align-items: flex-end; } .orion-chat-panel { width: 100%; height: 70vh; } .orion-chat-launcher { width: 54px; height: 54px; } }

/* ---- Industry cards: enriched ---- */
.ind-card { position: relative; overflow: hidden; }
.ind-card::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(90deg, var(--green), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.ind-card:hover::before { transform: scaleX(1); }
.ind-ico { width:46px; height:46px; border-radius:12px; background: rgba(7,104,115,.10); display:grid; place-items:center; margin-bottom:16px; transition: background .2s ease; }
.ind-card:hover .ind-ico { background: rgba(7,104,115,.18); }
.ind-ico svg { width:24px; height:24px; stroke: var(--green); fill:none; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }

/* Industries hub gradient hero */
.ind-hero { position: relative; padding: 96px 0 72px; overflow: hidden; background:
  radial-gradient(60% 90% at 18% 0%, rgba(7,104,115,.10), transparent 60%),
  radial-gradient(55% 90% at 88% 12%, rgba(255,75,0,.07), transparent 58%),
  var(--bg-soft); border-bottom: 1px solid var(--border); }
.ind-hero .section-head { max-width: 760px; }
.ind-hero h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.04; color: var(--text-deep); letter-spacing: -.02em; margin-bottom: 16px; }
.ind-hero p { font-size: 17px; color: var(--muted); line-height: 1.55; }
.ind-hero-cta { margin-top: 28px; display: flex; justify-content: center; }
@media (max-width: 900px) { .ind-hero { padding: 64px 0 48px; } }
