:root {
    --orange: #ff4f00;
    --accent: #ff4f00;
    --orange-hover: #e24600;
    --ink: #201515;
    --bark: #36342e;
    --stone: #5c584e;
    --muted: #8f8c82;
    --ash: #b8b4aa;
    --drift: #c5c0b1;
    --line: #eceae3;
    --parchment: #f7f3ee;
    --canvas: #fffefb;
    --white: #fff;
    --nav-h: 68px;
    --announce-h: 40px;
    --wrap: 1120px;
    --radius: 14px;
    --radius-sm: 10px;
    --font: "Inter", system-ui, -apple-system, sans-serif;
    --display: "Outfit", "Inter", system-ui, sans-serif;
    --shadow: 0 10px 30px rgba(32, 21, 21, .06);
    --space: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--canvas);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
    -webkit-tap-highlight-color: rgba(255, 79, 0, .12);
}
body.nav-open { overflow: hidden; }
img, svg, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus {
    left: 16px; top: 8px; z-index: 200;
    background: var(--orange); color: #fff;
    padding: 8px 12px; border-radius: 8px;
}

.wrap {
    width: min(100% - 48px, var(--wrap));
    margin-inline: auto;
}
@media (max-width: 639px) {
    .wrap { width: min(100% - 32px, var(--wrap)); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.01em;
    border: 1px solid transparent;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 38px; padding: 0 16px; font-size: 14px; border-radius: 9px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-hover); }
.btn-dark { background: var(--ink); color: var(--canvas); }
.btn-dark:hover { background: #000; }
.btn-ghost,
.btn-outline {
    background: #fff;
    border-color: var(--line);
    color: var(--ink);
}
.btn-ghost:hover,
.btn-outline:hover { border-color: var(--drift); background: var(--parchment); }
.btn-ghost-light {
    background: transparent;
    border-color: rgba(255,255,255,.28);
    color: #fff;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.08); }

/* Announcement */
.announce {
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    min-height: var(--announce-h);
    display: flex;
    align-items: center;
}
.announce-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 8px 0;
    text-align: center;
}
.announce a {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.announce a i { font-size: 11px; }

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,254,251,.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    height: var(--nav-h);
    overflow: visible;
}
.header-inner {
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 20px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark { display: flex; line-height: 0; }
.logo-word {
    font-family: var(--display);
    font-weight: 650;
    font-size: 17px;
    letter-spacing: .04em;
    color: var(--ink);
}
.primary-nav {
    display: flex;
    align-items: stretch;
    gap: 2px;
    flex: 1;
    min-width: 0;
    align-self: stretch;
    height: var(--nav-h);
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    align-self: stretch;
}
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 36px;
    padding: 0 12px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    color: var(--ink);
    border-radius: 8px;
    background: none;
}
button.nav-link {
    font: inherit;
}
.nav-link i { font-size: 9px; color: var(--muted); }
.nav-link:hover,
.nav-link.is-active { background: var(--parchment); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}
.header-quiet {
    font-size: 14px;
    font-weight: 500;
    color: var(--bark);
    white-space: nowrap;
}
.header-quiet:hover { color: var(--ink); }

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    border-radius: 8px;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .18s ease, opacity .18s ease;
}
body.nav-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile-only { display: none; }

.has-mega { position: relative; }
.mega {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 740px;
    padding: 12px 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s ease .1s, visibility .12s ease .1s;
}
.mega-narrow { min-width: 520px; }
.has-mega:hover .mega,
.has-mega:focus-within .mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
}
.mega-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 8px 32px;
    align-items: start;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.mega-grid-2 { grid-template-columns: 1fr 1fr; }
.mega-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 10px 8px;
}
.mega a {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 8px;
    border-radius: 10px;
}
.mega a:hover { background: var(--parchment); }
.mega a i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fff1ea;
    color: var(--orange);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 13px;
}
.mega strong { display: block; font-size: 14px; font-weight: 600; line-height: 1.3; }
.mega small { display: block; color: var(--stone); font-size: 13px; margin-top: 3px; line-height: 1.4; }

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(32,21,21,.35);
    z-index: 70;
}

/* First screen: hero + industry marquee */
.home-fold {
    min-height: calc(100vh - var(--announce-h) - var(--nav-h));
    min-height: calc(100svh - var(--announce-h) - var(--nav-h));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 36px 0 16px;
    text-align: center;
}
.hero h1 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(36px, 5.2vw, 58px);
    line-height: 1.06;
    letter-spacing: -.025em;
    max-width: 15ch;
    margin: 0 auto 14px;
}
.lede,
.hero .lede {
    font-size: 17px;
    line-height: 1.5;
    color: var(--stone);
    max-width: 40rem;
    margin: 0 auto 20px;
}
.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin: 0 auto 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-stats > div {
    text-align: center;
    padding: 16px 16px;
}
.hero-stats > div + div { border-left: 1px solid var(--line); }
.hero-stats strong {
    display: block;
    font-family: var(--display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 4px;
}
.hero-stats span {
    color: var(--stone);
    font-size: 13.5px;
    line-height: 1.35;
}
.trust-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.trust-pills span {
    border: 1px solid var(--line);
    background: var(--canvas);
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--bark);
    font-size: 13px;
    font-weight: 500;
}

/* Marquee */
.marquee-section {
    flex-shrink: 0;
    padding: 8px 0 28px;
}
.marquee-kicker {
    text-align: center;
    font-size: 12px;
    font-weight: 650;
    color: var(--muted);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: marquee 36s linear infinite;
    align-items: center;
}
.marquee-item {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ash);
    white-space: nowrap;
    letter-spacing: -.02em;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--parchment); }
.eyebrow {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.section h2,
.consult h2,
.display {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.15;
    letter-spacing: -.03em;
    max-width: 18ch;
}
.section-head {
    max-width: 640px;
    margin-bottom: 40px;
}
.intro,
.section .intro {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--stone);
    max-width: 42rem;
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.feature-card {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.feature-card i {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fff1ea;
    color: var(--orange);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 16px;
}
.feature-card h3 {
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}
.feature-card p { color: var(--stone); font-size: 15.5px; }

/* Platform */
.platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}
.platform-layout h2 { max-width: 16ch; }
.points {
    margin-top: 32px;
    display: grid;
    gap: 20px;
}
.points h3 { font-size: 16px; font-weight: 650; margin-bottom: 4px; letter-spacing: -.01em; }
.points p { color: var(--stone); font-size: 15px; max-width: 42rem; }
.constellation {
    --orbit: 31%;
    background: linear-gradient(180deg, #fff 0%, var(--parchment) 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    position: relative;
    aspect-ratio: 1;
    width: 100%;
    max-width: 460px;
    justify-self: center;
    overflow: hidden;
}
.constellation-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: var(--drift);
}
.constellation-lines circle {
    fill: none;
    stroke: currentColor;
    stroke-width: .35;
    stroke-dasharray: 1.4 1.8;
    opacity: .7;
}
.constellation-lines line {
    stroke: currentColor;
    stroke-width: .35;
    opacity: .55;
}
.hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 104px;
    height: 104px;
    border-radius: 26px;
    background: var(--orange);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--display);
    font-weight: 650;
    font-size: 13px;
    letter-spacing: .08em;
    box-shadow: 0 14px 32px rgba(255,79,0,.28);
    z-index: 2;
}
.app-chip {
    --angle: calc(var(--i) * 51.428571deg);
    position: absolute;
    left: calc(50% + sin(var(--angle)) * var(--orbit));
    top: calc(50% - cos(var(--angle)) * var(--orbit));
    transform: translate(-50%, -50%);
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 7px 12px 7px 7px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    box-shadow: var(--shadow);
    z-index: 1;
}
.app-chip i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}

/* Consult */
.consult {
    padding: 88px 0;
    background:
        radial-gradient(720px 240px at 18% 0%, rgba(255,79,0,.14), transparent 62%),
        var(--parchment);
    text-align: center;
}
.consult .eyebrow { margin-bottom: 14px; }
.consult h2 { max-width: 16ch; margin: 0 auto 16px; }
.consult p {
    max-width: 38rem;
    margin: 0 auto 28px;
    color: var(--stone);
    font-size: 18px;
}

/* Toolkit */
.toolkit-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 24px;
}
.toolkit-tab {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 550;
    background: var(--canvas);
}
.toolkit-tab.is-on {
    background: var(--ink);
    color: var(--canvas);
    border-color: var(--ink);
}
.template-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.template-card {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 230px;
    height: 100%;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.template-card:hover {
    border-color: #ddd8cc;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.template-card .apps {
    font-size: 12px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.template-card h3 { font-size: 18px; letter-spacing: -.02em; margin-bottom: 8px; }
.template-card p { color: var(--stone); font-size: 15px; flex: 1; }
.template-card .try {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

/* Stories */
.story-slider {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 20px;
    align-items: stretch;
}
.story-card {
    background: var(--parchment);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 36px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
}
.story-card blockquote {
    font-family: var(--display);
    font-size: clamp(22px, 2.3vw, 28px);
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: -.02em;
    margin: 0 0 auto;
}
.story-meta { margin-top: 28px; }
.story-meta strong { display: block; font-size: 15px; }
.story-meta span { color: var(--stone); font-size: 14px; }
.story-nav {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}
.story-nav button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
}
.story-nav button:hover { background: var(--parchment); }
.story-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.story-stat {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px;
    background: var(--canvas);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 162px;
}
.story-stat strong {
    display: block;
    font-family: var(--display);
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.story-stat span { color: var(--stone); font-size: 14.5px; line-height: 1.4; }

/* Counter */
.counter-band {
    padding: 88px 0;
    text-align: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.counter-band .count {
    font-family: var(--display);
    font-size: clamp(52px, 9vw, 104px);
    font-weight: 600;
    letter-spacing: -.05em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.counter-band p {
    margin-top: 14px;
    color: var(--stone);
    font-size: 17px;
}

/* Governance */
.gov-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.gov-card {
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.gov-card .eyebrow { margin-bottom: 10px; }
.gov-card h3 { font-size: 21px; letter-spacing: -.02em; margin: 0 0 10px; }
.gov-card > p { color: var(--stone); margin-bottom: 18px; font-size: 15px; flex: 1; }
.gov-card ul { display: grid; gap: 10px; }
.gov-card li {
    padding-left: 16px;
    position: relative;
    color: var(--bark);
    font-size: 14.5px;
    line-height: 1.45;
}
.gov-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--orange);
    position: absolute;
    left: 0;
    top: .55em;
}

/* Security */
.security-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 48px;
    align-items: start;
}
.security-grid h2 { max-width: 16ch; }
.sec-list { display: grid; gap: 22px; margin-top: 28px; }
.sec-list h3 { font-size: 16px; margin-bottom: 4px; }
.sec-list p { color: var(--stone); font-size: 15px; }
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 8px;
}
.badge {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bark);
}

/* Inner pages */
.page-hero {
    padding: 72px 0 36px;
}
.page-hero h1 {
    font-family: var(--display);
    font-weight: 500;
    font-size: clamp(36px, 4.8vw, 52px);
    line-height: 1.1;
    letter-spacing: -.03em;
    max-width: 16ch;
}
.page-hero p {
    margin-top: 14px;
    font-size: 18px;
    color: var(--stone);
    max-width: 40rem;
    line-height: 1.55;
}
.page-hero .btn { margin-top: 8px; }
.page-hero .btn + .btn { margin-left: 8px; }

.prose {
    max-width: 720px;
    font-size: 17px;
    color: var(--bark);
}
.prose p { margin-bottom: 16px; }
.prose h2 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -.02em;
    margin: 36px 0 12px;
    max-width: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
    align-items: stretch;
}
.mv-card {
    background: var(--parchment);
    border-radius: var(--radius);
    padding: 28px;
    height: 100%;
}
.mv-card h3 { margin-bottom: 10px; font-size: 20px; letter-spacing: -.02em; }
.mv-card p { color: var(--stone); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.service-card {
    border: 1px solid var(--line);
    background: var(--canvas);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 228px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.service-card:hover {
    border-color: #ddd8cc;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.service-card i {
    color: var(--orange);
    margin-bottom: 14px;
    font-size: 18px;
}
.service-card h3 { font-size: 17px; letter-spacing: -.02em; margin-bottom: 8px; }
.service-card p { color: var(--stone); flex: 1; font-size: 14.5px; }
.service-card .more {
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
}

.cat-label {
    margin: 36px 0 14px;
}
.cat-label:first-child { margin-top: 0; }

.solution-block {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}
.solution-block:first-of-type { border-top: 0; padding-top: 0; }
.solution-block h2 {
    font-size: 24px;
    max-width: none;
    margin: 0;
}
.solution-block p { color: var(--stone); max-width: 40rem; margin: 0; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}
.price-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background: var(--canvas);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.price-card.featured {
    background: var(--ink);
    color: var(--canvas);
    border-color: var(--ink);
}
.price-card h3 { font-size: 22px; letter-spacing: -.02em; margin-bottom: 4px; }
.price-card .price {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.02em;
    margin: 10px 0 12px;
}
.price-card > p { color: var(--stone); flex: 1; font-size: 15px; }
.price-card.featured > p { color: rgba(255,254,251,.72); }
.price-card ul { margin: 18px 0 24px; display: grid; gap: 8px; }
.price-card li {
    font-size: 14.5px;
    padding-left: 16px;
    position: relative;
}
.price-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--orange);
    position: absolute;
    left: 0;
    top: .55em;
}
.price-card .btn { width: 100%; }

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 56px;
    align-items: start;
}
.contact-copy h2 {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -.02em;
    max-width: none;
    margin-bottom: 12px;
}
.contact-copy p { color: var(--stone); max-width: 36rem; }
.contact-meta {
    margin-top: 28px;
    line-height: 1.7;
}
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 16px;
}
.form-row { margin-bottom: 16px; }
.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--canvas);
    border-radius: 8px;
    padding: 0 14px;
    height: 46px;
    font-size: 16px;
    color: var(--ink);
}
.form-row textarea { height: auto; min-height: 140px; padding: 12px 14px; resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--ink);
}
.alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-ok { background: #ecfdf3; color: #166534; }
.alert-err { background: #fef2f2; color: #991b1b; }

/* Footer */
.site-footer {
    background: var(--ink);
    color: var(--canvas);
    padding: 0 0 28px;
}
.site-footer .logo-word { color: #fff; }
.footer-cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 64px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-cta-band h2 {
    font-family: var(--display);
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 500;
    letter-spacing: -.03em;
    max-width: 14ch;
    line-height: 1.15;
}
.footer-cta-band p {
    margin-top: 10px;
    color: rgba(255,254,251,.68);
    max-width: 36rem;
    font-size: 16px;
}
.footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.footer-main {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
    padding: 48px 0 40px;
    align-items: start;
}
.footer-brand p { color: rgba(255,254,251,.68); margin-top: 14px; font-size: 14.5px; max-width: 32ch; }
.footer-contact { margin-top: 18px; line-height: 1.7; color: rgba(255,254,251,.78); font-size: 14.5px; }
.footer-contact a:hover { text-decoration: underline; }
.footer-main h3 {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,254,251,.48);
    margin: 0 0 16px;
    font-weight: 650;
}
.footer-main ul { display: grid; gap: 8px; }
.footer-main a {
    display: inline-block;
    color: rgba(255,254,251,.82);
    font-size: 14.5px;
}
.footer-main a:hover { color: #fff; }
.footer-apps {
    padding: 8px 0 28px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-apps h3 {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,254,251,.48);
    margin: 28px 0 14px;
    font-weight: 650;
}
.app-az {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}
.app-az a { color: rgba(255,254,251,.68); font-size: 14px; }
.app-az a:hover { color: #fff; }
.footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,254,251,.48);
    font-size: 13px;
}
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a { color: rgba(255,254,251,.72); font-size: 18px; }
.footer-social a:hover { color: #fff; }
.seo-answer-block {
    margin: 18px auto 0;
    max-width: 720px;
    color: var(--stone);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-height: 820px) and (min-width: 1101px) {
    .hero { padding: 20px 0 8px; }
    .hero h1 { margin-bottom: 10px; }
    .hero .lede { margin-bottom: 14px; font-size: 16px; }
    .hero-actions { margin-bottom: 18px; }
    .hero-stats { margin-bottom: 14px; }
    .hero-stats > div { padding: 12px 12px; }
    .marquee-section { padding: 4px 0 20px; }
}

@media (max-width: 1100px) {
    .site-header {
        overflow: visible;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .header-inner { overflow: visible; }
    .header-actions .header-quiet { display: none; }
    .menu-toggle { display: flex; }
    .primary-nav { display: none; }
    .nav-mobile-only { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
    .nav-mobile-only .btn { width: 100%; }
    body.nav-open .primary-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 50%;
        right: auto;
        bottom: auto;
        width: 100vw;
        margin-left: -50vw;
        height: calc(100dvh - var(--announce-h) - var(--nav-h));
        max-height: calc(100svh - var(--announce-h) - var(--nav-h));
        min-height: calc(100dvh - var(--announce-h) - var(--nav-h));
        flex: none;
        align-self: auto;
        background: var(--canvas);
        z-index: 85;
        padding: 12px 20px 48px;
        overflow-x: hidden;
        overflow-y: auto;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 16px 40px rgba(32, 21, 21, .08);
    }
    body.nav-open .nav-backdrop { display: block; }
    .nav-item { display: block; }
    .nav-link {
        width: 100%;
        min-height: 48px;
        height: auto;
        padding: 12px 12px;
        justify-content: space-between;
        border-radius: 10px;
    }
    .has-mega:hover .mega,
    .has-mega:focus-within .mega {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        height: 0;
        overflow: hidden;
        padding: 0;
    }
    .mega, .mega-narrow {
        position: static;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        min-width: 0;
        max-width: none;
        padding: 0 0 8px 4px;
        height: 0;
        overflow: hidden;
        transform: none;
    }
    .has-mega.open .mega {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        height: auto;
        overflow: visible;
        padding: 0 0 8px 4px;
    }
    .mega-grid, .mega-grid-2 {
        grid-template-columns: 1fr;
        gap: 4px;
        box-shadow: none;
        border: 0;
        padding: 4px 0 8px;
        background: transparent;
        border-radius: 0;
    }
    .mega a { padding: 10px 8px; }
    .feature-grid, .platform-layout, .template-grid,
    .story-slider, .gov-grid, .security-grid,
    .service-grid, .price-grid, .contact-layout,
    .mv-grid, .footer-main, .hero-stats,
    .form-grid, .solution-block {
        grid-template-columns: 1fr;
    }
    .hero-stats > div + div { border-left: 0; border-top: 1px solid var(--line); }
    .footer-cta-band { flex-direction: column; align-items: flex-start; }
    .section, .consult { padding: 56px 0; }
    .hero { padding: 28px 0 16px; }
    .home-fold { min-height: 0; }
    .constellation {
        max-width: none;
        aspect-ratio: auto;
        overflow: visible;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 16px;
        justify-items: stretch;
    }
    .constellation-lines { display: none; }
    .hub {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 72px;
        grid-column: 1 / -1;
        border-radius: 16px;
        font-size: 14px;
        margin-bottom: 4px;
    }
    .app-chip {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .announce { font-size: 12px; }
    .announce-inner { gap: 8px; padding: 10px 0; }
    .header-actions { display: none; }
    .hero h1 { font-size: clamp(28px, 8vw, 36px); }
    .hero .lede { font-size: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: min(100%, 360px); }
    .trust-pills { gap: 6px; }
    .trust-pills span { font-size: 12px; padding: 6px 10px; }
    .page-hero h1 { font-size: clamp(28px, 8vw, 36px); }
    .page-hero .btn + .btn { margin-left: 0; margin-top: 10px; display: inline-flex; }
    .template-grid, .story-stats, .service-grid, .price-grid { grid-template-columns: 1fr; }
    .form-card { padding: 20px 16px; }
    .section, .consult { padding: 48px 0; }
    .footer-cta-actions .btn { width: 100%; }
    .btn { white-space: normal; text-align: center; }
    .story-card, .feature-card, .gov-card, .service-card, .price-card { padding: 22px; }
    .announce-inner { flex-direction: column; gap: 6px; }
    .header-inner { gap: 12px; }
    .logo-word { font-size: 15px; }
}
