/* NRC Company — v2 design system "Electric Precision"
   Bending Spoons lane: white canvas, colossal ink type, one electric accent.
   Loaded INSTEAD of style.min.css + nrc-brand.css on redesigned pages. */

:root {
    --bg: #ffffff;
    --surface: #f4f7fb;
    --ink: #0a1628;
    --ink-2: #43526b;
    --azure: #38b6ff;
    --azure-ink: #0b6db3;
    --navy: #18375d;
    --line: rgba(10, 22, 40, .12);
    --line-inv: rgba(242, 246, 251, .14);
    --tile: #101f35;
    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-expo: cubic-bezier(.16, 1, .3, 1);
    --font: 'Montserrat', system-ui, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --container: 1240px;
    --gutter: clamp(20px, 4vw, 48px);
    /* z-scale: nav 1000 · lang 1100 · mobile-nav 1200 · progress 3000 · curtain 4000 */
    --primary-dark: #0f2640;
    --accent: #38b6ff;
}
html.dark {
    --bg: #0a1628;
    --surface: #101f35;
    --ink: #f2f6fb;
    --ink-2: #9fb0c7;
    --azure-ink: #5ec5ff;
    --line: rgba(242, 246, 251, .14);
    --tile: #16273f;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--azure); color: #06263e; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip-to-main {
    position: fixed; top: -100px; left: 24px; z-index: 5000;
    padding: 12px 20px; background: var(--ink); color: var(--bg);
    border-radius: 999px; font-weight: 600; font-size: .9rem; text-decoration: none;
    transition: top .2s var(--ease);
}
.skip-to-main:focus-visible { top: 16px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 30px; border-radius: 999px;
    font-family: var(--font); font-size: .975rem; font-weight: 700; line-height: 1;
    text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
    transition: background .2s var(--ease), color .2s var(--ease),
        border-color .2s var(--ease), transform .25s var(--ease-expo), box-shadow .25s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--azure-ink); color: #fff; box-shadow: 0 12px 32px -12px rgba(11, 109, 179, .55); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
    outline: 2px solid var(--azure-ink); outline-offset: 3px;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed; inset-inline: 0; top: 0; z-index: 1000;
    padding-block: 14px;
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.navbar.scrolled {
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
    padding-block: 10px;
}
.nav-container { display: flex; align-items: center; gap: 28px; }
.logo { flex-shrink: 0; text-decoration: none; }
.logo-icon { display: block; width: 148px; height: 46px; overflow: hidden; position: relative; }
.logo-icon img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
/* logo.png is the white wordmark, logodark.png the black one */
.logo-icon .logo-light { opacity: 0; }
html.dark .logo-icon .logo-light { opacity: 1; }
html.dark .logo-icon .logo-dark { opacity: 0; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links > li > a {
    display: inline-block; padding: 10px 16px; border-radius: 999px;
    font-size: .95rem; font-weight: 600; text-decoration: none; color: var(--ink);
    transition: background .2s var(--ease);
}
.nav-links > li > a:hover { background: var(--surface); }

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 250px;
    padding: 8px; background: var(--bg); border: 1px solid var(--line);
    border-radius: 18px; box-shadow: 0 24px 60px -20px rgba(10, 22, 40, .25);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block; padding: 10px 14px; border-radius: 12px;
    font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--ink);
    transition: background .15s var(--ease), color .15s var(--ease);
}
.nav-dropdown-menu a:hover { background: var(--surface); color: var(--azure-ink); }
.nav-dropdown-all a { font-weight: 700; color: var(--azure-ink); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }
.btn-nav { padding: 11px 22px; font-size: .9rem; }

/* Language switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 14px; background: transparent; border: 1.5px solid var(--line);
    border-radius: 999px; font-family: var(--font); font-size: .85rem; font-weight: 700;
    color: var(--ink); cursor: pointer; transition: border-color .2s var(--ease);
}
.lang-btn:hover { border-color: var(--ink); }
.lang-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0; z-index: 1100; min-width: 160px;
    padding: 8px; background: var(--bg); border: 1px solid var(--line);
    border-radius: 18px; box-shadow: 0 24px 60px -20px rgba(10, 22, 40, .25);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
}
.lang-dropdown.open, .lang-switcher.open .lang-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option {
    display: block; width: 100%; padding: 9px 14px; text-align: left;
    background: none; border: 0; border-radius: 12px; cursor: pointer;
    font-family: var(--font); font-size: .9rem; font-weight: 500; color: var(--ink);
    transition: background .15s var(--ease);
}
.lang-option:hover { background: var(--surface); }
.lang-option.active { font-weight: 700; color: var(--azure-ink); }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px;
    background: transparent; border: 0; cursor: pointer;
}
.hamburger span {
    display: block; height: 2px; width: 100%; background: var(--ink);
    border-radius: 2px; transition: transform .3s var(--ease-expo), opacity .2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
    position: relative; min-height: 100svh;
    display: flex; align-items: center;
    padding-block: 140px 80px;
    overflow: clip;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
    position: absolute; inset: -10% -10% 30% 40%;
    background-image: radial-gradient(var(--line) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 70%);
    mask-image: radial-gradient(ellipse at 70% 30%, #000 30%, transparent 70%);
}
.hero-glow {
    position: absolute; right: -15%; top: -20%; width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(56, 182, 255, .14), transparent 65%);
}
.hero-container {
    position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
    align-items: center; gap: clamp(40px, 6vw, 80px); width: 100%;
}
.hero-title {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
}
.hero-title > span { display: block; }
.gradient-text { color: var(--azure-ink); }
.hero-subtitle {
    margin-top: 28px; max-width: 46ch;
    font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--ink-2);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }

/* Terminal artifact */
.code-window {
    background: #0d1b30; border: 1px solid rgba(94, 197, 255, .18);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 40px 90px -30px rgba(10, 22, 40, .5);
    transform: rotate(1.5deg);
    transition: transform .5s var(--ease-expo), box-shadow .5s var(--ease);
}
.code-window:hover { transform: rotate(0deg) translateY(-6px); }
.code-header {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; border-bottom: 1px solid rgba(242, 246, 251, .08);
}
.code-dots { display: flex; gap: 7px; }
.code-dots .dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; } .dot.yellow { background: #febc2e; } .dot.green { background: #28c840; }
.code-title { font-family: var(--mono); font-size: .8rem; color: #7d93b2; }
.code-body { padding: 22px 24px 28px; height: 250px; overflow: hidden; }
.typing-terminal { font-family: var(--mono); font-size: .88rem; line-height: 1.75; color: #c9e3ff; white-space: pre-wrap; }
.typing-terminal .typing-part { display: inline; }

.scroll-indicator {
    position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
}
.scroll-indicator .mouse {
    width: 1px; height: 56px; background: var(--line); position: relative; overflow: hidden;
}
.scroll-indicator .wheel {
    position: absolute; inset-inline: 0; top: -40%; height: 40%;
    background: var(--azure-ink);
    animation: scrollLine 2s var(--ease-expo) infinite;
}
@keyframes scrollLine { 0% { top: -40%; } 70%, 100% { top: 110%; } }

/* ---------- Sections ---------- */
section { padding-block: clamp(96px, 11vw, 160px); }
.hero { padding-block: 140px 80px; }
.section-header { max-width: 780px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800; line-height: 1.06; letter-spacing: -0.03em;
}
.section-subtitle { margin-top: 20px; font-size: 1.1rem; color: var(--ink-2); max-width: 62ch; }

/* ---------- Services: editorial rows ---------- */
.services { background: var(--bg); }
.services .section-header { margin-inline: auto; text-align: center; }
.services .section-subtitle { margin-inline: auto; }
.services-grid { border-top: 1px solid var(--line); }
.service-card {
    display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(24px, 4vw, 64px);
    padding-block: clamp(36px, 5vw, 56px);
    border-bottom: 1px solid var(--line);
    position: relative;
}
.service-title {
    font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em;
    line-height: 1.15; display: flex; align-items: baseline; gap: 14px;
    transition: color .25s var(--ease);
}
.service-card:hover .service-title { color: var(--azure-ink); }
.service-card.featured .service-title::before {
    content: ""; width: 12px; height: 12px; border-radius: 50%;
    background: var(--azure); flex-shrink: 0; align-self: center;
}
.service-badge {
    display: inline-block; margin-bottom: 14px; padding: 6px 14px;
    background: var(--azure); color: #06263e; border-radius: 999px;
    font-size: .78rem; font-weight: 700;
}
.service-desc { color: var(--ink-2); max-width: 58ch; }
.service-features { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.service-features li {
    padding: 7px 15px; border: 1px solid var(--line); border-radius: 999px;
    font-size: .84rem; font-weight: 600; color: var(--ink);
    transition: border-color .2s var(--ease);
}
.service-card:hover .service-features li { border-color: rgba(56, 182, 255, .45); }
.service-cta {
    margin-top: 26px; display: inline-flex; align-items: center; gap: 8px;
    font-size: .95rem; font-weight: 700; color: var(--ink); text-decoration: none;
}
.service-cta::after {
    content: "→"; transition: transform .25s var(--ease-expo); color: var(--azure-ink);
}
.service-cta:hover::after { transform: translateX(6px); }
.section-cta { text-align: center; margin-top: clamp(40px, 5vw, 64px); }

/* ---------- Software: drenched navy ---------- */
.software { background: var(--primary-dark); color: #f2f6fb; }
html.dark .software { background: #071120; }
.software .section-title { color: #fff; }
.software .section-subtitle { color: #9fb0c7; }
.software .section-header { margin-inline: auto; text-align: center; }
.products-showcase {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.product-card {
    position: relative; padding: 34px 30px 30px;
    background: var(--tile); border: 1px solid var(--line-inv); border-radius: 20px;
    transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
html.dark .product-card { background: #101f35; }
.product-card:hover {
    border-color: rgba(56, 182, 255, .5);
    box-shadow: 0 30px 60px -30px rgba(56, 182, 255, .35);
}
.product-card h3 {
    font-size: 1.55rem; font-weight: 800; letter-spacing: -0.02em; color: #fff;
}
.product-card p { margin-top: 12px; font-size: .95rem; line-height: 1.6; color: #9fb0c7; }
.product-card > a {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 22px;
    font-size: .9rem; font-weight: 700; color: #5ec5ff; text-decoration: none;
}
.product-card > a::after { content: "→"; transition: transform .25s var(--ease-expo); }
.product-card > a:hover::after { transform: translateX(6px); }
.software .section-cta .btn-primary { background: var(--azure); color: #06263e; }
.software .section-cta .btn-primary:hover { background: #5ec5ff; box-shadow: 0 12px 32px -12px rgba(56, 182, 255, .5); }

/* ---------- About: prose + oversized numbers ---------- */
.about { background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: clamp(48px, 7vw, 110px); align-items: start;
}
.about-text { margin-top: 24px; color: var(--ink-2); max-width: 60ch; }
.about-text + .about-text { margin-top: 16px; }
.about-values { margin-top: 44px; display: grid; gap: 26px; }
.value { display: flex; gap: 18px; align-items: flex-start; }
.value-icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--surface); color: var(--azure-ink);
}
.value h4 { font-size: 1.05rem; font-weight: 700; }
.value p { margin-top: 4px; font-size: .95rem; color: var(--ink-2); }
.about-metrics { display: grid; gap: 0; }
.metric-card { padding-block: 28px; border-top: 1px solid var(--line); }
.metric-card:last-child { border-bottom: 1px solid var(--line); }
.metric-number {
    display: block; font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1; color: var(--ink);
}
.metric-label { display: block; margin-top: 10px; font-size: .95rem; font-weight: 600; color: var(--ink-2); }

/* ---------- Tech stack: marquee strip ---------- */
.techstack { background: var(--surface); overflow: clip; padding-block: clamp(72px, 8vw, 110px); }
.techstack-bg { display: none; }
.techstack .section-header { margin-inline: auto; text-align: center; margin-bottom: 40px; }
.tech-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.tech-pills span {
    flex-shrink: 0; padding: 10px 20px; margin-right: 10px;
    background: var(--bg); border: 1px solid var(--line); border-radius: 999px;
    font-size: .9rem; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.tech-pills.wow-marquee { flex-wrap: nowrap; justify-content: flex-start; gap: 0; }

/* ---------- Contact: azure band ---------- */
.contact { background: var(--azure); color: #06263e; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px); align-items: center;
}
.contact .section-title { color: #06263e; }
.contact-text { margin-top: 22px; font-size: 1.1rem; line-height: 1.65; color: #0a3a5c; max-width: 50ch; }
.contact-form {
    background: var(--bg); border-radius: 24px;
    padding: clamp(28px, 4vw, 44px);
    box-shadow: 0 40px 90px -40px rgba(6, 38, 62, .5);
    display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--surface); color: var(--ink);
    border: 1.5px solid transparent; border-radius: 14px;
    font-family: var(--font); font-size: .95rem;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--azure-ink); background: var(--bg);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.footer { background: var(--primary-dark); color: #9fb0c7; padding-block: clamp(64px, 8vw, 96px) 0; overflow: clip; }
html.dark .footer { background: #071120; }
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
}
.footer-desc { margin-top: 20px; font-size: .95rem; line-height: 1.65; max-width: 34ch; }
.footer-policy-links { display: flex; gap: 10px; margin-top: 18px; font-size: .88rem; }
.footer-policy-links a { color: #9fb0c7; text-decoration: none; transition: color .2s; }
.footer-policy-links a:hover { color: #fff; }
.footer-links h4 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer-links li + li { margin-top: 10px; }
.footer-links a { font-size: .92rem; color: #9fb0c7; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #5ec5ff; }
.footer-bottom {
    margin-top: clamp(48px, 6vw, 72px); padding-block: 26px;
    border-top: 1px solid var(--line-inv);
    display: flex; justify-content: center; font-size: .88rem;
}
.footer-bottom a { color: #fff; font-weight: 600; text-decoration: none; }
.footer-wordmark {
    margin-top: clamp(40px, 6vw, 70px);
    font-size: clamp(5rem, 22vw, 20rem); font-weight: 800; letter-spacing: -0.04em;
    line-height: .78; text-align: center; color: rgba(242, 246, 251, .05);
    user-select: none; pointer-events: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed; inset: 0; z-index: 1200;
        flex-direction: column; justify-content: center; gap: 8px;
        background: var(--bg);
        transform: translateX(100%); visibility: hidden;
        transition: transform .45s var(--ease-expo), visibility .45s;
        margin: 0;
    }
    .nav-links.open { transform: translateX(0); visibility: visible; }
    .nav-links > li > a { font-size: 1.35rem; padding: 12px 24px; }
    .nav-dropdown-menu {
        position: static; opacity: 1; visibility: visible; transform: none;
        border: 0; box-shadow: none; background: transparent;
        display: none; padding: 0; text-align: center;
    }
    .nav-dropdown.active .nav-dropdown-menu { display: block; }
    .hamburger { display: flex; z-index: 1300; position: relative; }
    .btn-nav { display: none; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { max-width: 560px; }
    .service-card { grid-template-columns: 1fr; gap: 18px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    body { font-size: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding-top: 120px; }
    .hero-actions .btn { flex: 1; min-width: 0; }
    .code-window { transform: none; }
    .code-body { height: 280px; }
    .typing-terminal { font-size: .78rem; }
    .scroll-indicator { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .scroll-indicator { display: none; }
}

/* ---------- Internal page primitives ---------- */
.page-hero {
    padding: 180px 0 90px; background: var(--bg);
}
.page-hero .section-title { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 18ch; }
.page-hero .section-subtitle { font-size: 1.15rem; }
.page-hero-dark { background: var(--primary-dark); color: #f2f6fb; }
.page-hero-dark .section-title { color: #fff; }
.page-hero-dark .section-subtitle { color: #9fb0c7; }

.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 2.2em 0 .6em; letter-spacing: -0.02em; }
.prose h3 { font-size: 1.2rem; margin: 1.8em 0 .5em; }
.prose p, .prose li { color: var(--ink-2); }
.prose p + p { margin-top: 1em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin: .8em 0; }
.prose a { color: var(--azure-ink); }

.v2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.v2-card {
    padding: 32px 28px; background: var(--surface); border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.v2-card:hover { border-color: rgba(56, 182, 255, .45); }
.v2-card h3 { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.015em; }
.v2-card p { margin-top: 10px; font-size: .95rem; color: var(--ink-2); }

.cta-band { background: var(--azure); color: #06263e; text-align: center; }
.cta-band .section-title { color: #06263e; margin-inline: auto; }
.cta-band .btn-primary { background: #0a1628; color: #fff; margin-top: 36px; }
.cta-band .btn-primary:hover { background: #06263e; }

.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding-block: 30px; border-top: 1px solid var(--line); }
.step-num { font-size: 1.6rem; font-weight: 800; color: var(--azure-ink); line-height: 1.2; }
.step h3 { font-size: 1.2rem; }
.step p { margin-top: 6px; color: var(--ink-2); }

.faq-item { border-top: 1px solid var(--line); padding-block: 24px; }
.faq-item summary { font-weight: 700; font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq-item summary::after { content: "+"; color: var(--azure-ink); font-weight: 800; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin-top: 12px; color: var(--ink-2); max-width: 68ch; }
