:root {
    --ink: #122022;
    --ink-soft: #435256;
    --teal: #0f766e;
    --teal-dark: #0b514c;
    --teal-deep: #073b3a;
    --teal-light: #d8f3ed;
    --mint: #f0faf7;
    --orange: #f4a230;
    --orange-soft: #fff0d6;
    --cream: #f8f6ef;
    --white: #ffffff;
    --line: #dce5e2;
    --shadow: 0 24px 70px rgba(7, 59, 58, .14);
    --container: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}

.skip-link {
    background: var(--ink);
    color: var(--white);
    left: 1rem;
    padding: .75rem 1rem;
    position: fixed;
    top: -5rem;
    z-index: 1000;
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.site-container {
    margin: 0 auto;
    max-width: var(--container);
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

.site-header {
    backdrop-filter: blur(18px);
    background: rgba(248, 246, 239, .9);
    border-bottom: 1px solid rgba(15, 118, 110, .12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 84px;
}

.site-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

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

.site-brand span {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.site-brand strong {
    font-size: 1.3rem;
    letter-spacing: -.035em;
}

.site-brand small {
    color: var(--teal);
    font-size: .64rem;
    font-weight: 800;
    letter-spacing: .16em;
    margin-top: 5px;
    text-transform: uppercase;
}

.site-nav {
    align-items: center;
    display: flex;
    gap: 30px;
}

.site-nav > a {
    color: #334346;
    font-size: .91rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.site-nav > a:hover {
    color: var(--teal);
}

.site-nav .nav-cta {
    align-items: center;
    background: var(--teal-dark);
    border-radius: 999px;
    color: var(--white);
    display: inline-flex;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    transition: background .2s ease, transform .2s ease;
}

.site-nav .nav-cta:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-2px);
}

.menu-toggle {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    cursor: pointer;
    display: none;
    font-size: 1.1rem;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.hero {
    background:
        radial-gradient(circle at 80% 15%, rgba(244, 162, 48, .16), transparent 26rem),
        linear-gradient(180deg, #fcfbf7 0%, var(--cream) 100%);
    overflow: hidden;
    padding: 90px 0 0;
    position: relative;
}

.hero::before {
    background-image: linear-gradient(rgba(15, 118, 110, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 118, 110, .055) 1px, transparent 1px);
    background-size: 40px 40px;
    content: "";
    height: 460px;
    opacity: .55;
    position: absolute;
    right: -100px;
    top: 0;
    transform: rotate(-7deg);
    width: 700px;
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: 62px;
    grid-template-columns: minmax(0, .88fr) minmax(560px, 1.12fr);
    position: relative;
    z-index: 1;
}

.eyebrow {
    align-items: center;
    color: var(--teal);
    display: flex;
    font-size: .73rem;
    font-weight: 850;
    gap: 10px;
    letter-spacing: .16em;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.eyebrow > span {
    background: var(--orange);
    border-radius: 99px;
    height: 8px;
    width: 8px;
}

.eyebrow-light {
    color: #8ddbd0;
}

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

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: .99;
}

h1 {
    font-size: clamp(3.55rem, 5.4vw, 5.65rem);
    margin-bottom: 28px;
}

h1 em,
h2 em {
    color: var(--teal);
    font-weight: 500;
}

.hero-lead {
    color: var(--ink-soft);
    font-size: 1.12rem;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 650px;
}

.hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    font-size: .94rem;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.button-primary {
    background: var(--teal);
    box-shadow: 0 14px 30px rgba(15, 118, 110, .22);
    color: var(--white);
}

.button-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 17px 36px rgba(11, 81, 76, .28);
    color: var(--white);
    transform: translateY(-2px);
}

.button-secondary {
    background: rgba(255, 255, 255, .7);
    border-color: var(--line);
    color: var(--ink);
}

.button-secondary:hover {
    background: var(--white);
    border-color: #b8cac5;
    transform: translateY(-2px);
}

.trust-row {
    align-items: center;
    color: #5d696b;
    display: flex;
    flex-wrap: wrap;
    font-size: .78rem;
    font-weight: 700;
    gap: 20px;
    margin-top: 34px;
}

.trust-row span {
    align-items: center;
    display: inline-flex;
    gap: 7px;
}

.trust-row i {
    color: var(--teal);
}

.hero-visual {
    min-height: 570px;
    padding: 32px 0 58px;
    position: relative;
}

.product-window {
    background: var(--white);
    border: 1px solid rgba(18, 32, 34, .12);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-visual > .product-window {
    position: absolute;
    transform: rotate(1.2deg);
    width: 710px;
}

.window-bar {
    align-items: center;
    background: #f4f6f5;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 7px;
    min-height: 42px;
    padding: 0 14px;
}

.window-bar > span {
    background: #cad5d1;
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.window-bar > span:first-child {
    background: var(--orange);
}

.window-bar p {
    color: #6d797a;
    font-size: .68rem;
    font-weight: 750;
    margin: 0 0 0 8px;
}

.product-window img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: top left;
    width: 100%;
}

.signal-card {
    align-items: center;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 118, 110, .18);
    border-radius: 15px;
    box-shadow: 0 18px 38px rgba(18, 32, 34, .15);
    display: flex;
    gap: 12px;
    padding: 13px 16px;
    position: absolute;
    z-index: 2;
}

.signal-card-alert {
    right: -42px;
    top: 108px;
}

.signal-card-care {
    bottom: 40px;
    left: -34px;
}

.signal-icon {
    align-items: center;
    background: var(--orange-soft);
    border-radius: 11px;
    color: #af6909;
    display: flex;
    height: 39px;
    justify-content: center;
    width: 39px;
}

.signal-card-care .signal-icon {
    background: var(--teal-light);
    color: var(--teal);
}

.signal-card span:not(.signal-icon) {
    display: flex;
    flex-direction: column;
}

.signal-card small {
    color: #738083;
    font-size: .65rem;
    font-weight: 750;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.signal-card strong {
    font-size: .82rem;
}

.hero-proof {
    align-items: center;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-top: 38px;
    min-height: 112px;
}

.hero-proof p {
    color: #5f6b6c;
    font-size: .86rem;
    margin: 0;
    max-width: 370px;
}

.hero-proof div {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
}

.hero-proof span {
    color: #526062;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.section {
    padding: 118px 0;
}

.split-intro {
    align-items: end;
    display: grid;
    gap: 90px;
    grid-template-columns: 1.08fr .92fr;
    margin-bottom: 54px;
}

h2 {
    font-size: clamp(2.6rem, 4.5vw, 4.45rem);
    margin-bottom: 0;
}

.split-intro > p,
.section-heading > p,
.product-intro > p {
    color: var(--ink-soft);
    font-size: 1.04rem;
    line-height: 1.75;
    margin-bottom: 5px;
}

.problem-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.35fr .825fr .825fr;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    padding: 30px;
    position: relative;
}

.problem-card-featured {
    overflow: hidden;
    padding: 0;
}

.photo-wrap {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.photo-wrap::after {
    background: linear-gradient(180deg, transparent 45%, rgba(7, 59, 58, .64));
    content: "";
    inset: 0;
    position: absolute;
}

.photo-wrap img {
    height: 100%;
    object-fit: cover;
    object-position: center 44%;
    width: 100%;
}

.photo-label {
    align-items: center;
    bottom: 16px;
    color: var(--white);
    display: flex;
    font-size: .72rem;
    font-weight: 750;
    gap: 8px;
    left: 20px;
    position: absolute;
    z-index: 2;
}

.problem-card-copy {
    padding: 25px 28px 28px;
}

.card-number {
    color: #81908f;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .14em;
}

.problem-card h3,
.feature-card h3,
.role-grid h3 {
    font-size: 1.32rem;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.problem-card h3 {
    margin: auto 0 12px;
}

.problem-card-copy h3 {
    margin: 9px 0 8px;
}

.problem-card p,
.feature-card p,
.role-grid p {
    color: var(--ink-soft);
    font-size: .92rem;
    line-height: 1.7;
}

.problem-card > a {
    color: var(--teal);
    font-size: .84rem;
    font-weight: 800;
    margin-top: auto;
    text-decoration: none;
}

.feature-icon {
    align-items: center;
    background: var(--teal-light);
    border-radius: 14px;
    color: var(--teal);
    display: inline-flex;
    font-size: 1.05rem;
    height: 48px;
    justify-content: center;
    margin-top: 30px;
    width: 48px;
}

.problem-card-dark {
    background: var(--teal-deep);
    border-color: var(--teal-deep);
    color: var(--white);
}

.problem-card-dark .card-number,
.problem-card-dark p {
    color: #b8d6d1;
}

.problem-card-dark .feature-icon {
    background: rgba(255, 255, 255, .1);
    color: #9ae0d6;
}

.problem-card-dark > a {
    color: #9ae0d6;
}

.platform-section {
    background: var(--white);
}

.section-heading {
    margin-bottom: 52px;
    max-width: 820px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.centered .eyebrow {
    justify-content: center;
}

.section-heading > p {
    margin: 22px auto 0;
    max-width: 690px;
}

.feature-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: #fbfcfa;
    border: 1px solid var(--line);
    border-radius: 20px;
    min-height: 330px;
    padding: 28px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.feature-card:hover {
    border-color: #9fc9c0;
    box-shadow: 0 18px 40px rgba(15, 118, 110, .1);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    margin: 0 0 32px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-tag {
    background: var(--mint);
    border-radius: 99px;
    color: var(--teal-dark);
    display: inline-flex;
    font-size: .68rem;
    font-weight: 800;
    margin-top: 13px;
    padding: 7px 10px;
}

.product-section {
    background:
        radial-gradient(circle at 84% 8%, rgba(244, 162, 48, .13), transparent 30rem),
        linear-gradient(180deg, #073b3a 0%, #052f2f 100%);
    color: var(--white);
    overflow: hidden;
}

.product-intro {
    align-items: end;
    display: grid;
    gap: 90px;
    grid-template-columns: 1.1fr .9fr;
    margin-bottom: 55px;
}

.product-intro > p {
    color: #bad4cf;
}

.care-journey {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.care-journey::before {
    background: linear-gradient(90deg, #64cbbd, rgba(100, 203, 189, .22));
    content: "";
    height: 1px;
    left: 12.5%;
    position: absolute;
    right: 12.5%;
    top: 39px;
}

.care-journey article {
    border-left: 1px solid rgba(255, 255, 255, .13);
    padding: 0 26px 28px;
    position: relative;
}

.care-journey article:first-child {
    border-left: 0;
    padding-left: 0;
}

.care-journey article:last-child {
    padding-right: 0;
}

.journey-number {
    align-items: center;
    background: #0a4b48;
    border: 1px solid #5cc4b6;
    border-radius: 50%;
    color: #a8e7df;
    display: inline-flex;
    font-size: .66rem;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    letter-spacing: .05em;
    position: relative;
    width: 32px;
    z-index: 1;
}

.journey-icon {
    align-items: center;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    color: #88dbcf;
    display: flex;
    font-size: 1.2rem;
    height: 58px;
    justify-content: center;
    margin: 34px 0 30px;
    width: 58px;
}

.journey-kicker {
    color: #88dbcf;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .13em;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.care-journey h3 {
    font-size: 1.22rem;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.care-journey article > p:last-child {
    color: #b8d0cc;
    font-size: .83rem;
    line-height: 1.72;
    margin-bottom: 0;
}

.journey-outcome {
    align-items: center;
    background: rgba(255, 255, 255, .065);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    display: grid;
    gap: 55px;
    grid-template-columns: .85fr 1.15fr;
    margin-top: 44px;
    padding: 36px 40px;
}

.journey-outcome .eyebrow {
    margin-bottom: 14px;
}

.journey-outcome h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 2.8vw, 2.75rem);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.06;
    margin-bottom: 0;
}

.journey-outcome-list {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
}

.journey-outcome-list span {
    align-items: flex-start;
    color: #d2e3df;
    display: flex;
    font-size: .79rem;
    gap: 10px;
    line-height: 1.5;
}

.journey-outcome-list i {
    align-items: center;
    background: rgba(136, 219, 207, .12);
    border-radius: 50%;
    color: #88dbcf;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .55rem;
    height: 21px;
    justify-content: center;
    margin-top: 1px;
    width: 21px;
}

.solutions-section {
    background: var(--mint);
}

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

.role-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 34px;
}

.role-grid article > span {
    color: var(--teal);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.role-grid h3 {
    margin: 24px 0 13px;
}

.role-grid ul {
    border-top: 1px solid var(--line);
    list-style: none;
    margin: 25px 0 0;
    padding: 22px 0 0;
}

.role-grid li {
    align-items: center;
    display: flex;
    font-size: .84rem;
    font-weight: 700;
    gap: 10px;
    margin-top: 10px;
}

.role-grid li i {
    color: var(--teal);
}

.confidence-section {
    background:
        radial-gradient(circle at 8% 90%, rgba(244, 162, 48, .17), transparent 28rem),
        #122f2e;
    color: var(--white);
}

.confidence-grid {
    display: grid;
    gap: 90px;
    grid-template-columns: .8fr 1.2fr;
}

.confidence-points {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, 1fr);
}

.confidence-points article {
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 18px;
    padding: 23px;
}

.confidence-points i {
    color: #83d8cd;
    font-size: 1.2rem;
    margin-bottom: 22px;
}

.confidence-points span,
.confidence-points strong {
    display: block;
}

.confidence-points span {
    color: #bdd1cd;
    font-size: .82rem;
    line-height: 1.65;
}

.confidence-points strong {
    color: var(--white);
    font-size: .96rem;
    margin-bottom: 6px;
}

.final-cta {
    background: var(--orange-soft);
    padding: 100px 0;
}

.final-cta-inner {
    align-items: center;
    display: grid;
    gap: 90px;
    grid-template-columns: 1.1fr .9fr;
}

.final-cta-inner > div:last-child {
    border-left: 1px solid rgba(175, 105, 9, .22);
    padding-left: 60px;
}

.final-cta-inner > div:last-child p {
    color: #5d5548;
    font-size: 1.03rem;
    margin-bottom: 26px;
}

.site-footer {
    background: #0d2424;
    color: var(--white);
    padding: 68px 0 24px;
}

.footer-main {
    align-items: center;
    display: grid;
    gap: 55px;
    grid-template-columns: .55fr .85fr .8fr;
    padding-bottom: 48px;
}

.footer-brand strong {
    color: var(--white);
}

.footer-main > p {
    color: #abc3be;
    font-size: .84rem;
    margin: 0;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 26px;
    justify-content: flex-end;
}

.footer-main nav a {
    color: #d2e1de;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
}

.footer-main nav a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #809996;
    display: flex;
    font-size: .72rem;
    justify-content: space-between;
    padding-top: 24px;
}

.footer-bottom p {
    margin: 0;
}

/* Public legal centre and provider onboarding */
.public-page,
.legal-page {
    background: var(--cream);
}

.public-hero,
.legal-hero {
    background:
        radial-gradient(circle at 82% 24%, rgba(244, 162, 48, .16), transparent 24rem),
        linear-gradient(135deg, #eef9f5 0%, #f8f6ef 62%);
    border-bottom: 1px solid var(--line);
    padding: 88px 0 76px;
}

.public-hero-grid,
.legal-hero-grid {
    align-items: end;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.public-hero h1,
.legal-hero h1,
.confirmation-card h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    letter-spacing: -.055em;
    line-height: .96;
    margin: 20px 0 26px;
    max-width: 900px;
}

.public-hero h1 em,
.confirmation-card h1 em {
    color: var(--teal);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.public-lead,
.legal-hero-grid > div:first-child > p:last-child {
    color: var(--ink-soft);
    font-size: 1.1rem;
    max-width: 720px;
}

.legal-meta {
    border-left: 1px solid rgba(15, 118, 110, .22);
    display: grid;
    gap: 14px;
    padding-left: 34px;
}

.legal-meta span {
    align-items: center;
    color: var(--ink-soft);
    display: flex;
    font-size: .86rem;
    font-weight: 750;
    gap: 11px;
}

.legal-meta span::before {
    background: var(--teal);
    border-radius: 50%;
    content: "";
    height: 7px;
    width: 7px;
}

.legal-layout {
    align-items: start;
    display: grid;
    gap: 72px;
    grid-template-columns: 250px minmax(0, 760px);
    justify-content: center;
    padding-bottom: 110px;
    padding-top: 72px;
}

.legal-toc {
    border-left: 2px solid var(--line);
    display: grid;
    gap: 4px;
    padding-left: 22px;
    position: sticky;
    top: 116px;
}

.legal-toc strong {
    font-size: .75rem;
    letter-spacing: .12em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.legal-toc a {
    border-radius: 8px;
    color: var(--ink-soft);
    font-size: .85rem;
    padding: 7px 10px;
    text-decoration: none;
}

.legal-toc a:hover {
    background: var(--mint);
    color: var(--teal-dark);
}

.legal-content {
    min-width: 0;
}

.legal-content > section {
    border-top: 1px solid var(--line);
    padding: 48px 0 12px;
    scroll-margin-top: 110px;
}

.legal-content > section:first-of-type {
    border-top: 0;
}

.legal-number {
    color: var(--teal);
    display: block;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .15em;
    margin-bottom: 12px;
}

.legal-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    letter-spacing: -.035em;
    line-height: 1.08;
    margin: 0 0 20px;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 28px;
}

.legal-content p,
.legal-content li {
    color: #39484b;
}

.legal-content a {
    color: var(--teal-dark);
    font-weight: 700;
}

.legal-content li + li {
    margin-top: 10px;
}

.legal-callout {
    align-items: flex-start;
    background: var(--teal-deep);
    border-radius: 18px;
    color: var(--white);
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
    padding: 26px 28px;
}

.legal-callout i {
    color: #79ddd0;
    font-size: 1.35rem;
    margin-top: 3px;
}

.legal-callout p {
    color: #d6e8e5;
    margin: 0;
}

.legal-callout strong {
    color: var(--white);
}

.legal-callout-warning {
    background: #3f2f13;
}

.legal-callout-warning i {
    color: #ffc96a;
}

.deletion-steps {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.deletion-steps article {
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    display: flex;
    gap: 18px;
    padding: 20px;
}

.deletion-steps article > span,
.approval-path li > span,
.confirmation-steps div > span {
    align-items: center;
    background: var(--teal-light);
    border-radius: 50%;
    color: var(--teal-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: .78rem;
    font-weight: 850;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.deletion-steps strong,
.deletion-steps p {
    display: block;
    margin: 0;
}

.approval-path {
    background: var(--teal-deep);
    border-radius: 22px;
    box-shadow: var(--shadow);
    color: var(--white);
    padding: 30px;
}

.approval-path-label {
    color: #8dded3;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .13em;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.approval-path ol {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.approval-path li {
    display: flex;
    gap: 15px;
    padding-bottom: 24px;
    position: relative;
}

.approval-path li:not(:last-child)::before {
    background: rgba(255, 255, 255, .18);
    content: "";
    height: 24px;
    left: 17px;
    position: absolute;
    top: 38px;
    width: 1px;
}

.approval-path li:last-child {
    padding-bottom: 0;
}

.approval-path strong,
.approval-path small {
    display: block;
}

.approval-path small {
    color: #b9d1cd;
    margin-top: 2px;
}

.registration-section {
    padding: 88px 0 110px;
}

.registration-layout {
    align-items: start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
}

.registration-aside {
    position: sticky;
    top: 116px;
}

.registration-aside h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -.045em;
    line-height: 1.04;
}

.registration-checks {
    display: grid;
    gap: 20px;
    list-style: none;
    margin: 34px 0;
    padding: 0;
}

.registration-checks li {
    align-items: flex-start;
    display: flex;
    gap: 14px;
}

.registration-checks i {
    align-items: center;
    background: var(--teal-light);
    border-radius: 10px;
    color: var(--teal-dark);
    display: inline-flex;
    flex: 0 0 auto;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.registration-checks strong,
.registration-checks span {
    display: block;
}

.registration-checks span {
    color: var(--ink-soft);
    font-size: .88rem;
}

.registration-checks strong {
    color: var(--ink);
    font-size: .95rem;
}

.registration-help {
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: .86rem;
    padding-top: 22px;
}

.registration-help a {
    color: var(--teal-dark);
    font-weight: 800;
}

.registration-card {
    background: var(--white);
    border: 1px solid rgba(15, 118, 110, .13);
    border-radius: 24px;
    box-shadow: 0 28px 80px rgba(7, 59, 58, .1);
    overflow: hidden;
}

.registration-card-heading {
    background: linear-gradient(135deg, #0b514c, #073b3a);
    color: var(--white);
    padding: 38px 42px;
}

.registration-card-heading > span {
    color: #8dded3;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.registration-card-heading h2 {
    font-size: 2rem;
    letter-spacing: -.035em;
    margin: 8px 0 4px;
}

.registration-card-heading p {
    color: #bed6d2;
    font-size: .84rem;
    margin: 0;
}

.registration-form {
    padding: 8px 42px 42px;
}

.registration-form fieldset {
    border: 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 34px 0 38px;
}

.registration-form legend {
    align-items: center;
    display: flex;
    font-size: 1rem;
    font-weight: 850;
    gap: 10px;
    margin-bottom: 22px;
}

.registration-form legend span {
    color: var(--teal);
    font-size: .7rem;
    letter-spacing: .12em;
}

.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
    display: block;
}

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

.field > span {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.field input,
.field select {
    appearance: none;
    background: #fbfcfa;
    border: 1px solid #ccd9d6;
    border-radius: 10px;
    color: var(--ink);
    font: inherit;
    min-height: 48px;
    padding: 10px 13px;
    transition: border-color .2s ease, box-shadow .2s ease;
    width: 100%;
}

.field select {
    background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%), linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
    background-position: calc(100% - 17px) 21px, calc(100% - 12px) 21px;
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    padding-right: 34px;
}

.field input:focus,
.field select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
    outline: 0;
}

.field > small {
    color: #697779;
    display: block;
    font-size: .72rem;
    line-height: 1.45;
    margin-top: 6px;
}

.field-error,
.consent-error {
    color: #b42318 !important;
    font-weight: 700;
}

.consent-row {
    align-items: flex-start;
    background: #fbfcfa;
    border: 1px solid var(--line);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    padding: 16px;
}

.consent-row input {
    accent-color: var(--teal);
    flex: 0 0 auto;
    height: 18px;
    margin-top: 3px;
    width: 18px;
}

.consent-row span {
    color: var(--ink-soft);
    font-size: .85rem;
}

.consent-row a {
    color: var(--teal-dark);
    font-weight: 800;
}

.consent-error {
    display: block;
    font-size: .75rem;
    margin: 6px 0 0 16px;
}

.form-alert {
    align-items: flex-start;
    background: #fff2f0;
    border-left: 4px solid #d92d20;
    display: flex;
    gap: 12px;
    margin: 28px 42px 0;
    padding: 15px 18px;
}

.form-alert i {
    color: #d92d20;
    margin-top: 4px;
}

.form-alert strong,
.form-alert p {
    display: block;
    margin: 0;
}

.form-alert p {
    color: #7a271a;
    font-size: .82rem;
}

.registration-submit {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    padding-top: 34px;
}

.registration-submit > div {
    align-items: flex-start;
    color: var(--ink-soft);
    display: flex;
    font-size: .76rem;
    gap: 9px;
    max-width: 330px;
}

.registration-submit > div i {
    color: var(--teal);
    margin-top: 3px;
}

.confirmation-page {
    padding: 90px 0 110px;
}

.confirmation-card {
    background:
        radial-gradient(circle at 100% 0, rgba(244, 162, 48, .16), transparent 22rem),
        var(--white);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 980px;
    padding: 64px;
    text-align: center;
}

.confirmation-icon {
    align-items: center;
    background: var(--teal);
    border: 8px solid var(--teal-light);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-size: 1.4rem;
    height: 70px;
    justify-content: center;
    margin-bottom: 20px;
    width: 70px;
}

.confirmation-card h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    margin-left: auto;
    margin-right: auto;
}

.confirmation-card > p:not(.eyebrow) {
    color: var(--ink-soft);
    margin: 0 auto;
    max-width: 680px;
}

.confirmation-steps {
    align-items: center;
    background: var(--mint);
    border-radius: 18px;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    margin: 42px 0;
    padding: 28px;
}

.confirmation-steps div {
    display: grid;
    justify-items: center;
}

.confirmation-steps strong,
.confirmation-steps small {
    display: block;
}

.confirmation-steps strong {
    margin-top: 9px;
}

.confirmation-steps small {
    color: var(--ink-soft);
}

.confirmation-steps > i {
    color: #85a6a1;
}

.confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.verification-notice {
    align-items: flex-start;
    background: var(--mint);
    border: 1px solid #b8ded7;
    border-radius: 12px;
    color: var(--teal-dark);
    display: flex;
    gap: 12px;
    margin: 28px auto 0;
    max-width: 680px;
    padding: 16px 18px;
    text-align: left;
}

.verification-notice i {
    margin-top: 4px;
}

.verification-notice-warning {
    background: #fff7e8;
    border-color: #f2c778;
    color: #744c09;
}

.verification-resend {
    border-top: 1px solid var(--line);
    margin: 38px auto 0;
    max-width: 560px;
    padding-top: 28px;
    text-align: left;
}

.verification-resend > label {
    display: block;
    font-size: .8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.verification-resend > div {
    display: flex;
    gap: 8px;
}

.verification-resend input {
    background: #fbfcfa;
    border: 1px solid #ccd9d6;
    border-radius: 10px;
    font: inherit;
    min-height: 46px;
    min-width: 0;
    padding: 10px 13px;
    width: 100%;
}

.verification-resend input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
    outline: 0;
}

.verification-resend button {
    background: var(--teal-deep);
    border: 0;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    flex: 0 0 auto;
    font: inherit;
    font-size: .82rem;
    font-weight: 800;
    padding: 0 18px;
}

@media (max-width: 1100px) {
    .site-nav {
        gap: 20px;
    }

    .hero-grid {
        gap: 40px;
        grid-template-columns: .85fr 1.15fr;
    }

    .hero-visual > .product-window {
        width: 620px;
    }

    .signal-card-alert {
        right: -15px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-card-featured {
        grid-column: 1 / -1;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .registration-layout {
        gap: 42px;
        grid-template-columns: .7fr 1.3fr;
    }
}

@media (max-width: 900px) {
    .header-inner {
        min-height: 74px;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        align-items: stretch;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 24px;
        padding: 12px;
        position: absolute;
        right: 24px;
        top: 66px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav > a {
        align-items: center;
        display: flex;
        min-height: 48px;
        padding: 0 14px;
    }

    .site-nav .nav-cta {
        justify-content: center;
        margin-top: 6px;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid,
    .split-intro,
    .product-intro,
    .confidence-grid,
    .final-cta-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
        padding: 24px 0 65px;
    }

    .hero-visual > .product-window {
        position: relative;
        width: 100%;
    }

    .signal-card-alert {
        right: -8px;
        top: 70px;
    }

    .signal-card-care {
        bottom: 25px;
        left: 16px;
    }

    .split-intro,
    .product-intro,
    .confidence-grid,
    .final-cta-inner {
        gap: 34px;
    }

    .care-journey {
        gap: 0;
        grid-template-columns: repeat(2, 1fr);
    }

    .care-journey::before {
        display: none;
    }

    .care-journey article {
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        padding: 28px;
    }

    .care-journey article:first-child {
        padding: 28px;
    }

    .care-journey article:nth-child(odd) {
        border-left: 0;
    }

    .care-journey article:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .journey-outcome {
        gap: 32px;
        grid-template-columns: 1fr;
    }

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

    .final-cta-inner > div:last-child {
        border-left: 0;
        border-top: 1px solid rgba(175, 105, 9, .22);
        padding-left: 0;
        padding-top: 32px;
    }

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

    .footer-main nav {
        justify-content: flex-start;
    }

    .public-hero-grid,
    .legal-hero-grid,
    .registration-layout {
        grid-template-columns: 1fr;
    }

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

    .legal-toc,
    .registration-aside {
        position: static;
    }

    .legal-toc {
        border-left: 0;
        border-top: 1px solid var(--line);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 24px 0 0;
    }

    .legal-toc strong {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-brand img {
        height: 42px;
        width: 42px;
    }

    .site-brand strong {
        font-size: 1.16rem;
    }

    .site-nav {
        left: 18px;
        right: 18px;
    }

    .hero {
        padding-top: 54px;
    }

    h1 {
        font-size: clamp(3rem, 15vw, 4rem);
    }

    h2 {
        font-size: clamp(2.4rem, 12vw, 3.3rem);
    }

    .hero-actions .button {
        width: 100%;
    }

    .public-hero,
    .legal-hero {
        padding: 58px 0 50px;
    }

    .public-hero h1,
    .legal-hero h1 {
        font-size: clamp(2.7rem, 14vw, 4rem);
    }

    .legal-meta {
        border-left: 0;
        border-top: 1px solid rgba(15, 118, 110, .22);
        padding-left: 0;
        padding-top: 24px;
    }

    .legal-layout,
    .registration-section {
        padding-bottom: 72px;
        padding-top: 52px;
    }

    .legal-toc {
        grid-template-columns: 1fr;
    }

    .legal-toc strong {
        grid-column: auto;
    }

    .registration-card-heading,
    .registration-form {
        padding-left: 22px;
        padding-right: 22px;
    }

    .form-alert {
        margin-left: 22px;
        margin-right: 22px;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .registration-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .registration-submit .button {
        width: 100%;
    }

    .confirmation-card {
        padding: 42px 22px;
    }

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

    .confirmation-steps > i {
        transform: rotate(90deg);
    }

    .verification-resend > div {
        flex-direction: column;
    }

    .verification-resend button {
        min-height: 46px;
    }

    .trust-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .hero-visual {
        padding-bottom: 88px;
    }

    .hero-visual > .product-window {
        border-radius: 12px;
    }

    .signal-card {
        max-width: calc(100% - 36px);
    }

    .signal-card-alert {
        display: none;
    }

    .signal-card-care {
        bottom: 22px;
        left: 18px;
    }

    .hero-proof {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        padding-bottom: 28px;
        padding-top: 28px;
    }

    .hero-proof div {
        gap: 14px 22px;
    }

    .section {
        padding: 82px 0;
    }

    .problem-grid,
    .feature-grid,
    .confidence-points {
        grid-template-columns: 1fr;
    }

    .problem-card-featured {
        grid-column: auto;
    }

    .problem-card {
        min-height: 390px;
    }

    .feature-card {
        min-height: auto;
    }

    .product-section {
        padding-bottom: 88px;
    }

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

    .care-journey article,
    .care-journey article:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        border-left: 0;
        padding: 28px 8px;
    }

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

    .journey-icon {
        margin: 24px 0 20px;
    }

    .journey-outcome {
        margin-top: 22px;
        padding: 28px 22px;
    }

    .journey-outcome-list {
        grid-template-columns: 1fr;
    }

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

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
