/* ============================================================
   NUVI TOOLS · Landing minimal conceptual
   ------------------------------------------------------------
   TABLA DE CONTENIDOS
     1. Design tokens
     2. Reset / base
     3. Typography
     4. Buttons
     5. Header
     6. Hero
     7. Section shell
     8. Audience
     9. How it works
    10. Tour
    11. Features
    12. Comparison
    13. Steps
    14. Cases
    15. Pricing
     16. FAQ
    17. Final CTA / footer
    18. Suite index
    19. Contact section
    20. Reveal / responsive
   ============================================================ */

/* 1. Design tokens */
:root {
    --ink: #111111;
    --ink-2: #1d1d1f;
    --muted: #6e6e73;
    --muted-2: #a1a1a6;
    --paper: #ffffff;
    --paper-2: #fbfbfd;
    --paper-3: #f5f5f7;
    --line: rgba(17, 17, 17, 0.10);
    --line-strong: rgba(17, 17, 17, 0.22);
    --chocolate: #111111;
    --sage: #0a84ff;
    --ochre: #0071e3;
    --cream: #ffffff;
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: 'Instrument Serif', Georgia, serif;
    --container-max: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.08);
}

/* 2. Reset / base */
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
    margin: 0;
    background:
        linear-gradient(180deg, #fff 0%, #fbfbfd 54%, #fff 100%);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.48;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--ink); color: #fff; }
.container-x {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* 3. Typography */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.eyebrow::before {
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.48;
    content: "";
}
.eyebrow--centered { justify-content: center; }
.section-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(28px, 3.4vw, 52px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
}
.title-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
}
.title-accent {
    color: var(--sage);
}
.lead {
    max-width: 58ch;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.15vw, 18px);
}

/* 4. Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; }
.btn--ghost { border-color: var(--line); color: var(--ink); background: rgba(255, 255, 255, 0.72); }
.btn--ghost:hover { border-color: var(--line-strong); background: #fff; }
.btn--light { background: #fff; color: var(--ink); }

/* 5. Header */
.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid transparent;
    padding: 16px 0;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
    border-bottom-color: var(--line);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(160%) blur(18px);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: -0.02em;
}
.brand__mark {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 14px;
}
.nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
}
.nav-pill a {
    border-radius: 999px;
    padding: 8px 13px;
    color: var(--muted);
    font-size: 13.5px;
    font-weight: 600;
}
.nav-pill .nav-home {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #f4f1ea;
    color: #111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}
.nav-pill .nav-home svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}
.nav-pill .nav-home:hover,
.nav-pill .nav-home.is-active {
    background: #ece7dc;
    color: #000;
}
.nav-pill a:hover,
.nav-pill a.is-active {
    background: #fff;
    color: var(--ink);
}
.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.74);
}
.lang-switch a {
    border-radius: 999px;
    padding: 5px 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.lang-switch a.is-active {
    background: var(--ink);
    color: #fff;
}
.header-cta {
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--ink);
    color: #fff;
}
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    content: "";
}
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }

/* 6. Hero */
.hero {
    position: relative;
    padding: 132px 0 54px;
    background:
        linear-gradient(180deg, rgba(245, 245, 247, 0) 0%, rgba(245, 245, 247, 0.72) 100%),
        linear-gradient(120deg, transparent 0 58%, rgba(10, 132, 255, 0.06) 58% 100%),
        var(--paper);
}
.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
    gap: clamp(36px, 6vw, 92px);
    align-items: center;
    min-height: calc(100vh - 210px);
}
.hero__title {
    max-width: 720px;
    margin: 18px 0 0;
    font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 500;
    line-height: .95;
    letter-spacing: -0.045em;
    text-wrap: balance;
}
.hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.45;
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}
.hero__micro {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
}
.product-orbit {
    position: relative;
    padding: clamp(18px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}
.hero--jet .title-accent {
    color: #4f7cff;
}
.jet-panel {
    background:
        linear-gradient(145deg, rgba(17, 17, 17, 0.05), rgba(79, 124, 255, 0.08)),
        #fff;
}
.jet-search {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 24px;
    background: #101114;
    color: #fff;
}
.jet-search__top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.jet-search__top span {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 9px 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}
.jet-search__top .is-active {
    background: #fff;
    color: #111;
}
.jet-search__route {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
}
.jet-search__route div,
.jet-search__meta span {
    display: grid;
    gap: 6px;
}
.jet-search__route small,
.jet-search__meta small {
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.jet-search__route strong {
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: .9;
}
.jet-search__route span,
.jet-search__meta span {
    color: rgba(255, 255, 255, 0.72);
}
.jet-search__route i {
    position: relative;
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.24);
}
.jet-search__route i::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.72);
    border-right: 1px solid rgba(255, 255, 255, 0.72);
    content: "";
    transform: translateY(-50%) rotate(45deg);
}
.jet-search__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}
.jet-search__meta span {
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}
.jet-search__cta {
    margin: 16px;
    border-radius: 999px;
    padding: 14px 18px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}
.editor-window {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    background: #111;
    color: #fff;
}
.editor-window__top {
    display: flex;
    gap: 7px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.editor-window__top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.46);
}
.editor-window__body {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 310px;
}
.editor-window aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
}
.editor-window aside b { margin-bottom: 8px; }
.editor-window aside i {
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
}
.editor-window aside i.is-active { background: rgba(255, 255, 255, 0.12); color: #fff; }
.editor-window section { padding: 22px; }
.metric-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}
.metric-row span { color: rgba(255, 255, 255, 0.58); }
.mock-line {
    height: 12px;
    margin: 14px 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}
.w-90 { width: 90%; }
.w-70 { width: 70%; }
.mock-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 34px;
}
.mock-card-grid div {
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(10, 132, 255, 0.38));
}
.publish-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}
.publish-line b {
    border-radius: 999px;
    padding: 8px 12px;
    background: var(--sage);
    color: #fff;
}
.strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
}
.strip span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

/* 7. Section shell */
.sec { padding: clamp(82px, 10vw, 138px) 0; }
.sec--paper { background: var(--paper-2); }
.sec--dark {
    background:
        linear-gradient(120deg, #111 0%, #1d1d1f 58%, #000 100%);
    color: #fff;
}
.sec--dark .eyebrow,
.sec--dark .lead { color: rgba(255, 255, 255, 0.72); }
.section-head {
    display: grid;
    gap: 18px;
    margin-bottom: 40px;
}
.section-head--center {
    justify-items: center;
    text-align: center;
}

/* 8. Audience */
.audience-grid,
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.audience-card,
.case-card,
.features-grid article,
.tour-card,
.price-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}
.audience-card {
    min-height: 260px;
    padding: 26px;
}
.card-icon {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.audience-card h3,
.features-grid h3,
.tour-card h3,
.case-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.02em;
}
.audience-card p,
.features-grid p,
.tour-card p,
.case-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

/* 9. How it works */
.how-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: center;
}
.flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
}
.flow-node {
    min-height: 172px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.07);
}
.flow-node--wide {
    grid-column: 1 / -1;
    min-height: auto;
}
.flow-node small {
    display: block;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.54);
    font-weight: 700;
}
.flow-node strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
    letter-spacing: -0.02em;
}
.flow-node span { color: rgba(255, 255, 255, 0.7); }
.flow-arrow {
    border-radius: 999px;
    padding: 9px 12px;
    background: var(--ochre);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

/* 10. Tour */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tour-card { padding: 14px; }
.tour-card h3,
.tour-card p { padding: 0 8px; }
.mini-screen {
    height: 170px;
    margin-bottom: 20px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0 28%, transparent 28%),
        linear-gradient(180deg, rgba(10, 132, 255, 0.12), rgba(0, 0, 0, 0.03)),
        var(--paper-3);
}
.mini-screen--menu { background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0 28%, transparent 28%),
        repeating-linear-gradient(180deg, rgba(255,255,255,.92) 0 18px, rgba(229,229,234,.7) 18px 30px),
        var(--paper-3); }
.mini-screen--styler { background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0 28%, transparent 28%),
        linear-gradient(135deg, transparent 0 52%, rgba(10, 132, 255, 0.24) 52% 62%, transparent 62%),
        var(--paper-3); }
.mini-screen--publish { background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.94) 0 28%, transparent 28%),
        linear-gradient(135deg, transparent 45%, var(--sage) 46% 54%, transparent 55%),
        var(--paper-3); }

/* 11. Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.features-grid article { padding: 22px; }
.features-grid h3 { font-size: 19px; }

/* 12. Comparison */
.compare-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}
.compare-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}
.compare-table th,
.compare-table td {
    border-bottom: 1px solid var(--line);
    padding: 16px 18px;
    text-align: left;
    font-size: 14px;
}
.compare-table th {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.compare-table td:first-child { font-weight: 600; }
.compare-table tr:last-child td { border-bottom: 0; }

/* 13. Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.steps article {
    position: relative;
    border-top: 1px solid var(--line-strong);
    padding-top: 22px;
}
.steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 38px;
    border-radius: 50%;
    background: var(--sage);
    color: #fff;
    font-weight: 700;
}
.steps h3 {
    margin: 0 0 8px;
    font-size: 18px;
}
.steps p {
    margin: 0;
    color: var(--muted);
}

/* 14. Cases */
.case-card { padding: 26px; }

/* 15. Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}
.price-card {
    position: relative;
    padding: 28px;
}
.price-card--featured {
    background: var(--ink);
    color: #fff;
    transform: translateY(-10px);
}
.price-badge {
    display: inline-flex;
    margin-bottom: 18px;
    border-radius: 999px;
    padding: 6px 10px;
    background: var(--ochre);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}
.price-card h3 {
    margin: 0 0 12px;
    font-size: 20px;
}
.price-card strong {
    display: block;
    margin-bottom: 12px;
    font-size: 34px;
    letter-spacing: -0.04em;
}
.price-card p { color: var(--muted); }
.price-card--featured p,
.price-card--featured li { color: rgba(255, 255, 255, 0.72); }
.price-card ul {
    display: grid;
    gap: 9px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}
.price-card li::before {
    color: var(--sage);
    content: "✓ ";
}
.pricing-note {
    max-width: 760px;
    margin: 28px auto 0;
    color: var(--muted);
    text-align: center;
}

/* 16. FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
    gap: clamp(32px, 6vw, 86px);
}
.faq-list {
    display: grid;
    gap: 10px;
}
details {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}
summary {
    cursor: pointer;
    padding: 18px 20px;
    font-weight: 700;
}
details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

/* 17. Final CTA / footer */
.final-cta {
    padding: 46px var(--gutter);
    background: var(--paper);
}
.final-cta__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    border-radius: var(--radius-lg);
    padding: clamp(46px, 7vw, 84px);
    background:
        linear-gradient(120deg, #111, #1d1d1f);
    color: #fff;
    text-align: center;
}
.final-cta h2 {
    margin: 0;
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}
.final-cta p {
    max-width: 620px;
    margin: 22px auto 30px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}
.site-footer {
    border-top: 1px solid var(--line);
    padding: 26px 0;
    color: var(--muted);
    font-size: 14px;
}
.site-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
}
.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* 18. Suite index */
.suite-page {
    background:
        linear-gradient(180deg, #fff 0%, #f5f5f7 60%, #fff 100%),
        var(--paper);
}
.suite-hero {
    min-height: 100vh;
    padding: 132px 0 70px;
}
.suite-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
    min-height: calc(100vh - 220px);
}
.suite-hero__title {
    max-width: 760px;
    margin: 18px 0 0;
    font-size: clamp(38px, 5.4vw, 76px);
    font-weight: 500;
    line-height: .93;
    letter-spacing: -0.05em;
    text-wrap: balance;
}
.suite-hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.25vw, 19px);
    line-height: 1.45;
}
.suite-console {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
}
.suite-console__bar {
    display: flex;
    gap: 8px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}
.suite-console__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.22);
}
.suite-console__body {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    min-height: 380px;
}
.suite-console__side {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    background: #111;
    color: #fff;
    font-size: 13px;
}
.suite-console__side i {
    border-radius: 8px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.68);
    font-style: normal;
}
.suite-console__side i.is-active {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.suite-console__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 26px;
}
.suite-console__grid span {
    display: grid;
    min-height: 96px;
    place-items: end start;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    background:
        linear-gradient(145deg, rgba(10, 132, 255, 0.08), rgba(0, 0, 0, 0.02)),
        rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font-weight: 700;
}
.suite-section {
    padding: clamp(78px, 10vw, 132px) 0;
}
.suite-section--dark {
    background: linear-gradient(120deg, #111, #1d1d1f);
    color: #fff;
}
.suite-section--dark .eyebrow,
.suite-section--dark p {
    color: rgba(255, 255, 255, 0.72);
}
.suite-app-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.suite-app-card {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
    background: #fff;
}
.suite-app-card::before {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f5f5f7;
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    content: "N";
}
.suite-app-card::after {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 118px;
    height: 118px;
    border: 1px solid rgba(10, 132, 255, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(10, 132, 255, 0.12), transparent 58%);
    content: "";
    pointer-events: none;
}
.suite-app-card--build::before { content: "⌘"; }
.suite-app-card--orbit::before { content: "◎"; }
.suite-app-card--radar::before { content: "⌖"; }
.suite-app-card--jet::before { content: "✈"; }
.suite-app-card--content::before { content: "¶"; }
.suite-app-card--publish::before { content: "↗"; }
.suite-app-card--live {
    background:
        linear-gradient(145deg, rgba(10, 132, 255, 0.08), rgba(0, 0, 0, 0.02)),
        #fff;
}
.suite-app-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.suite-app-card__meta small {
    color: var(--muted-2);
    font-size: 11px;
    text-align: right;
}
.suite-app-card h3 {
    margin: 0 0 12px;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 600;
    letter-spacing: -0.04em;
}
.suite-app-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}
.suite-app-card ul {
    display: grid;
    gap: 8px;
    margin: 24px 0 30px;
    padding: 0;
    color: var(--muted);
    font-size: 13.5px;
    list-style: none;
}
.suite-app-card li::before {
    color: var(--sage);
    content: "✓ ";
}
.suite-app-card .btn,
.suite-app-card__disabled {
    margin-top: auto;
}
.suite-app-card__disabled {
    display: inline-flex;
    width: fit-content;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}
.suite-concept {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: start;
}
.suite-principles {
    display: grid;
    gap: 12px;
}
.suite-principles article {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-md);
    padding: 22px;
    background: rgba(255, 255, 255, 0.07);
}
.suite-principles span {
    display: block;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 800;
}
.suite-principles h3 {
    margin: 0 0 8px;
    font-size: 19px;
}
.suite-principles p {
    margin: 0;
}
.suite-roadmap__line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.suite-roadmap__line article {
    border-top: 1px solid var(--line-strong);
    padding-top: 22px;
}
.suite-roadmap__line small {
    display: block;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.suite-roadmap__line h3 {
    margin: 0 0 8px;
    font-size: 19px;
}
.suite-roadmap__line p {
    margin: 0;
    color: var(--muted);
}

/* 19. Contact section */
.contact-section {
    padding: clamp(82px, 10vw, 132px) 0;
    background:
        linear-gradient(180deg, #fff 0%, #f5f5f7 100%),
        var(--paper-2);
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
    gap: clamp(34px, 6vw, 90px);
    align-items: start;
}
.contact-lead {
    max-width: 58ch;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.15vw, 18px);
}
.contact-perks {
    display: grid;
    gap: 9px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 13.5px;
}
.contact-perks span::before {
    color: var(--sage);
    content: "· ";
}
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: clamp(22px, 3vw, 32px);
    background: #fff;
    box-shadow: var(--shadow);
}
.contact-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    letter-spacing: -0.03em;
}
.contact-card .sub {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}
.field-group {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}
.field-group label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}
.field-group input,
.field-group textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
}
.field-group input:focus,
.field-group textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.14);
}
.field-group textarea {
    resize: vertical;
}
.contact-actions {
    margin-top: 18px;
}
.contact-actions .btn {
    width: 100%;
}
.contact-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.form-message {
    border-radius: var(--radius-sm);
    margin: 0 0 18px;
    padding: 12px 14px;
    font-size: 14px;
}
.form-message--success {
    border: 1px solid rgba(10, 132, 255, 0.24);
    background: rgba(10, 132, 255, 0.08);
    color: #075ca8;
}
.form-message--error {
    border: 1px solid rgba(140, 61, 56, 0.24);
    background: rgba(140, 61, 56, 0.1);
    color: #6f302b;
}

/* 20. Reveal / responsive */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: calc(var(--delay, 0) * 80ms);
}
.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }
.reveal[data-delay="4"] { --delay: 4; }
.reveal.in {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1040px) {
    .hero__inner,
    .suite-hero__inner,
    .how-grid,
    .faq-grid,
    .suite-concept,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .tour-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .audience-grid,
    .cases-grid,
    .pricing-grid,
    .suite-roadmap__line {
        grid-template-columns: 1fr;
    }
    .price-card--featured { transform: none; }
}
@media (max-width: 760px) {
    body { font-size: 14px; }
    .site-header__inner { position: relative; }
    .nav-pill,
    .header-actions {
        display: none;
    }
    .menu-toggle { display: inline-grid; place-items: center; }
    body.nav-open .nav-pill {
        position: absolute;
        top: calc(100% + 12px);
        left: var(--gutter);
        right: var(--gutter);
        display: grid;
        border-radius: 18px;
        padding: 10px;
        background: var(--cream);
        box-shadow: var(--shadow);
    }
    body.nav-open .nav-pill a {
        padding: 12px 14px;
    }
    .hero { padding-top: 108px; }
    .hero__inner { min-height: auto; }
    .hero__title { font-size: clamp(34px, 12vw, 52px); }
    .suite-hero__title { font-size: clamp(34px, 12vw, 54px); }
    .suite-app-grid { grid-template-columns: 1fr; }
    .hero__actions,
    .hero__actions .btn,
    .final-cta .btn {
        width: 100%;
    }
    .product-orbit,
    .suite-console {
        max-width: 100%;
        zoom: .72;
    }
    .editor-window__body {
        grid-template-columns: 132px minmax(0, 1fr);
        min-height: 310px;
    }
    .editor-window aside {
        display: flex;
        gap: 10px;
        padding: 18px;
        font-size: 13px;
    }
    .editor-window aside i {
        border-radius: 8px;
        padding: 8px 10px;
    }
    .editor-window section {
        padding: 22px;
    }
    .metric-row {
        margin-bottom: 30px;
        font-size: inherit;
    }
    .mock-line {
        height: 12px;
        margin: 14px 0;
    }
    .mock-card-grid {
        gap: 10px;
        margin-top: 34px;
    }
    .mock-card-grid div {
        border-radius: 12px;
    }
    .publish-line {
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
        font-size: 13px;
    }
    .publish-line b {
        padding: 8px 12px;
    }
    .suite-console__bar {
        gap: 8px;
        padding: 18px 20px;
    }
    .suite-console__bar span {
        width: 10px;
        height: 10px;
    }
    .suite-console__body {
        display: grid !important;
        grid-template-columns: 128px minmax(0, 1fr) !important;
        min-height: 380px;
    }
    .suite-console__side {
        display: flex !important;
        gap: 10px;
        padding: 22px;
        font-size: 13px;
    }
    .suite-console__side i {
        border-radius: 8px;
        padding: 8px 10px;
    }
    .suite-console__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
        padding: 26px;
    }
    .suite-console__grid span {
        min-height: 96px;
        border-radius: var(--radius-md);
        padding: 16px;
        font-size: inherit;
    }
    .flow-diagram {
        grid-template-columns: 1fr auto 1fr;
        gap: 14px;
        zoom: .72;
    }
    .flow-node {
        min-height: 172px;
        border-radius: 22px;
        padding: 22px;
    }
    .flow-node small {
        margin-bottom: 34px;
        font-size: inherit;
    }
    .flow-node strong {
        font-size: inherit;
    }
    .flow-node span {
        font-size: inherit;
        line-height: inherit;
    }
    .flow-arrow {
        justify-self: center;
        font-size: inherit;
    }
    .steps {
        grid-template-columns: 1fr;
    }
    .tour-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    .site-footer__inner {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .product-orbit,
    .suite-console,
    .flow-diagram {
        zoom: .62;
    }
}
@media (max-width: 380px) {
    .product-orbit,
    .suite-console,
    .flow-diagram {
        zoom: .56;
    }
}
