@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --ink: #07161c;
    --ink-soft: #123039;
    --teal-900: #0a3d45;
    --teal-700: #0f6b73;
    --teal-500: #1aa6a8;
    --teal-300: #7ed4d2;
    --sand: #e8dcc8;
    --sand-soft: #f3eee5;
    --mist: #f5f9f8;
    --surface: #ffffff;
    --text: #12252c;
    --text-secondary: #3d5560;
    --text-muted: #6a7f88;
    --text-on-dark: rgba(255, 255, 255, 0.94);
    --text-on-dark-muted: rgba(255, 255, 255, 0.72);
    --border: rgba(15, 107, 115, 0.14);
    --border-strong: rgba(15, 107, 115, 0.26);
    --shadow-md: 0 18px 48px rgba(7, 22, 28, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --max-width: 1120px;
    --max-wide: 1280px;
    --header-h: 76px;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text);
    background: var(--mist);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal-500); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin: 0;
}

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.site-main { flex: 1; }
.container { width: min(100% - 2rem, var(--max-width)); margin-inline: auto; }
.container-wide { width: min(100% - 2rem, var(--max-wide)); margin-inline: auto; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal-700);
}
.eyebrow-on-dark { color: var(--teal-300); }
.section-header { text-align: left; max-width: 640px; margin: 0 0 2.5rem; }
.section-header.is-center { text-align: center; margin-inline: auto; }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-top: 0.65rem; }
.section-header p { margin: 0.85rem 0 0; color: var(--text-secondary); font-size: 1.06rem; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
    padding: 0.85rem 1.55rem; border-radius: 999px; font-family: var(--font-body);
    font-weight: 600; font-size: 0.95rem; border: 1px solid transparent; cursor: pointer;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.875rem; }
.btn-primary {
    background: var(--teal-700);
    color: white;
}
.btn-primary:hover { background: var(--teal-500); color: white; }
.btn-outline {
    background: transparent; color: var(--text); border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--sand-soft); color: var(--ink); }
.btn-outline-light {
    background: rgba(255,255,255,0.08); color: white; border-color: rgba(255,255,255,0.35);
}
.btn-outline-light:hover { color: white; background: rgba(255,255,255,0.14); }
.btn-sand {
    background: var(--sand); color: var(--ink); font-weight: 700;
}
.btn-sand:hover { background: #f0e6d4; color: var(--ink); }
.btn-soft {
    background: rgba(255,255,255,0.92); color: var(--teal-900); border-color: transparent;
}
.btn-soft:hover { background: white; color: var(--teal-700); }

.site-header {
    position: sticky; top: 0; z-index: 50; height: var(--header-h);
    background: rgba(245, 249, 248, 0.82); backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    background: rgba(255,255,255,0.94); border-bottom-color: var(--border);
    box-shadow: 0 6px 24px rgba(7,22,28,0.05);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 1.5rem; }
.brand img { height: 34px; width: auto; }
.nav-desktop { display: none; gap: 1.35rem; margin-left: auto; }
.nav-desktop a { color: var(--text-secondary); font-weight: 500; font-size: 0.95rem; }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--teal-700); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.nav-desktop + .nav-actions { margin-left: 0; }
.nav-toggle {
    border: 1px solid var(--border-strong); background: white; border-radius: 999px;
    padding: 0.45rem 0.9rem; font-weight: 600; color: var(--text);
}
.nav-mobile {
    display: none; flex-direction: column; gap: 0.35rem; padding: 0.75rem 1rem 1.25rem;
    background: white; border-bottom: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 0.65rem 0.4rem; color: var(--text); font-weight: 500; }
.nav-mobile-contact { margin-top: 0.5rem; text-align: center; }
@media (min-width: 960px) {
    .nav-desktop { display: flex; }
    .nav-toggle { display: none; }
    .nav-mobile { display: none !important; }
    .nav-actions { margin-left: 0; }
}

/* —— Product hero —— */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--text-on-dark);
    background:
        radial-gradient(ellipse 70% 55% at 88% 18%, rgba(26,166,168,0.32), transparent 55%),
        radial-gradient(ellipse 45% 40% at 8% 85%, rgba(232,220,200,0.14), transparent 50%),
        linear-gradient(155deg, #06141a 0%, #0b2e36 45%, #0f4f56 100%);
}
.hero-bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(circle at 30% 40%, rgba(126,212,210,0.12), transparent 28%),
        radial-gradient(circle at 70% 65%, rgba(26,166,168,0.1), transparent 30%);
    animation: softPulse 10s ease-in-out infinite;
}
@keyframes softPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
.hero-media {
    position: absolute; inset: 0; z-index: 0;
    background:
        linear-gradient(105deg, rgba(6,20,26,0.92) 0%, rgba(6,20,26,0.78) 36%, rgba(6,20,26,0.2) 58%, transparent 72%),
        linear-gradient(180deg, transparent 60%, rgba(6,20,26,0.55) 100%),
        url('/images/hero-product.svg') right center / cover no-repeat;
}
.hero-inner {
    position: relative; z-index: 1; padding: 4.5rem 0 5rem; max-width: 36rem;
}
.hero-brand {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    font-weight: 700; letter-spacing: -0.03em; color: white; margin: 0;
}
.hero-kicker {
    margin: 0.55rem 0 0; color: var(--teal-300); font-weight: 700; letter-spacing: 0.04em; font-size: 0.95rem;
}
.hero h1 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem); font-weight: 500; max-width: 22ch;
    color: var(--sand); margin: 0.85rem 0 0;
}
.hero-lead {
    max-width: 34rem; margin: 1rem 0 0; color: var(--text-on-dark-muted); font-size: 1.1rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.hero-note {
    margin: 1rem 0 0; font-size: 0.92rem; color: rgba(255,255,255,0.62);
}
@media (min-width: 960px) {
    .hero-inner { padding: 5.5rem 0 6rem; }
}

.section, .band { padding: 4.75rem 0; }
.section-cta { margin-top: 2rem; }
.band-muted, .trust-section { background: linear-gradient(180deg, var(--mist), var(--sand-soft)); }
.features-preview { background: var(--surface); }
.pricing-teaser { background: var(--mist); }
.testimonials-section { background: var(--sand-soft); }

.trust-grid, .feature-detail-grid {
    display: grid; gap: 1.75rem;
}
@media (min-width: 800px) {
    .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .feature-detail-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.trust-item h3, .feature-detail h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.trust-item p, .feature-detail p { margin: 0; color: var(--text-secondary); }

.feature-rows { display: grid; gap: 2rem; }
.feature-row {
    display: grid; gap: 1rem; padding: 1.75rem 0;
    border-top: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: 1px solid var(--border); }
@media (min-width: 800px) {
    .feature-row { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; }
}
.feature-copy h3 { font-size: 1.4rem; margin-bottom: 0.55rem; }
.feature-copy p { margin: 0; color: var(--text-secondary); }
.feature-points {
    margin: 0; padding-left: 1.1rem; color: var(--text-secondary);
}
.feature-points li { margin: 0.35rem 0; }

.ndis-band {
    background: linear-gradient(155deg, var(--ink), var(--teal-900));
    color: var(--text-on-dark);
}
.ndis-band-inner { max-width: 40rem; }
.ndis-band h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0.7rem 0 0; color: white; }
.ndis-band p { color: var(--text-on-dark-muted); margin: 1rem 0 1.5rem; }

.pricing-grid {
    display: grid; gap: 1.25rem;
}
@media (min-width: 720px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
}
@media (min-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(4, 1fr); align-items: stretch; }
}
.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem 1.45rem;
    display: flex; flex-direction: column; gap: 0.65rem;
    position: relative;
}
.pricing-card h3 { font-size: 1.35rem; }
.pricing-card .price {
    font-family: var(--font-display); margin: 0.2rem 0;
    color: var(--text); font-size: 1rem;
}
.pricing-card .price span {
    font-size: 2.35rem; font-weight: 700; letter-spacing: -0.02em;
}
.pricing-card .price small { font-size: 0.95rem; color: var(--text-muted); margin-left: 0.15rem; }
.pricing-blurb, .pricing-card > p { margin: 0; color: var(--text-secondary); }
.pricing-list {
    margin: 0.5rem 0 1rem; padding-left: 1.1rem; color: var(--text-secondary); flex: 1;
}
.pricing-list li { margin: 0.4rem 0; }
.pricing-card .btn { margin-top: auto; align-self: flex-start; }
.pricing-card--featured {
    background: linear-gradient(165deg, var(--teal-900), var(--teal-700));
    border-color: transparent; color: white;
    box-shadow: var(--shadow-md);
}
.pricing-card--featured .price,
.pricing-card--featured .pricing-blurb,
.pricing-card--featured p,
.pricing-card--featured li { color: rgba(255,255,255,0.88); }
.pricing-card--featured .price span { color: white; }
.pricing-card--featured .price small { color: rgba(255,255,255,0.7); }
.pricing-badge {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--sand); color: var(--ink); padding: 0.3rem 0.65rem; border-radius: 999px;
}
.pricing-footnote {
    margin-top: 2rem; text-align: center; color: var(--text-secondary); font-size: 0.95rem;
}

.testimonials-grid {
    display: grid; gap: 1.25rem;
}
@media (min-width: 800px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
    margin: 0; padding: 1.5rem 1.35rem;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
}
.testimonial p { margin: 0; color: var(--text-secondary); font-size: 1.02rem; }
.testimonial footer {
    margin-top: 1.1rem; display: grid; gap: 0.15rem;
}
.testimonial strong { font-family: var(--font-display); color: var(--text); }
.testimonial span { color: var(--text-muted); font-size: 0.9rem; }

.home-cta { padding-top: 0; }
.cta-panel {
    display: grid; gap: 1.5rem; align-items: center;
    padding: 2.25rem 1.75rem;
    border-radius: calc(var(--radius) + 4px);
    background: linear-gradient(145deg, var(--ink), var(--teal-900));
    color: var(--text-on-dark);
}
.cta-panel h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-panel p { margin: 0.7rem 0 0; color: var(--text-on-dark-muted); max-width: 36rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 800px) {
    .cta-panel { grid-template-columns: 1.4fr auto; padding: 2.5rem; }
}

.page-hero {
    padding: 3.75rem 0 2.25rem;
    background:
        radial-gradient(ellipse 55% 80% at 90% 0%, rgba(126,212,210,0.28), transparent 55%),
        linear-gradient(180deg, #e7f3f3, var(--mist));
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.85rem); max-width: 18ch; }
.page-hero p { max-width: 40rem; color: var(--text-secondary); margin-top: 0.9rem; }
.content-page { padding: 1rem 0 4.75rem; }

.cta-band {
    margin-top: 3rem; padding: 1.75rem;
    border-radius: var(--radius);
    background: var(--sand-soft);
    display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.cta-band p { margin: 0; color: var(--text-secondary); max-width: 36rem; }

.feature-grid { display: grid; gap: 1.75rem; }
@media (min-width: 800px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-item {
    padding-top: 0.25rem;
}
.feature-item h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.feature-item p { margin: 0; color: var(--text-secondary); }

.prose { max-width: 720px; }
.prose h2 { font-size: 1.45rem; margin: 2rem 0 0.65rem; }
.prose p { color: var(--text-secondary); }
.prose ul { color: var(--text-secondary); }

.steps { display: grid; gap: 1.5rem; counter-reset: step; margin-top: 0.5rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.step::before {
    counter-increment: step; content: counter(step);
    display: flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem; border-radius: 999px;
    background: var(--teal-700); color: white; font-weight: 700; font-size: 0.9rem;
    margin-bottom: 1rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.step p { margin: 0; color: var(--text-secondary); }

.contact-form {
    display: grid; gap: 0.9rem; max-width: 560px;
    background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem;
}
.contact-form label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.contact-form input, .contact-form textarea, .contact-form select {
    border: 1px solid var(--border-strong); border-radius: 10px; padding: 0.75rem 0.85rem;
    font: inherit; background: var(--mist);
}
.contact-form textarea { min-height: 140px; resize: vertical; }

.faq-list { display: grid; gap: 0.75rem; max-width: 760px; margin: 0 auto; }
.faq-item {
    background: white; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.15rem;
}
.faq-item summary { cursor: pointer; font-weight: 600; font-family: var(--font-display); }
.faq-item p { margin: 0.7rem 0 0; color: var(--text-secondary); }

.site-footer {
    background: var(--ink); color: var(--text-on-dark-muted); padding: 3.5rem 0 1.5rem; margin-top: auto;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-tagline { color: var(--sand); font-family: var(--font-display); font-weight: 600; margin: 0 0 0.75rem; }
.footer-label {
    font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
    color: var(--teal-300); margin-bottom: 0.85rem;
}
.footer-links { display: grid; gap: 0.45rem; }
.footer-links a, .site-footer a { color: var(--text-on-dark); }
.footer-list { margin: 0; padding-left: 1.1rem; }
.footer-bottom {
    display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
    margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.88rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
html:not(.js) .reveal { opacity: 1; transform: none; }

#blazor-error-ui {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: #a11; color: white; padding: 0.8rem 1rem;
}
#blazor-error-ui .reload { color: white; margin-left: 0.5rem; text-decoration: underline; }
