:root {
    color-scheme: dark;
    --bg: #111111;
    --bg-soft: #171717;
    --panel: rgba(30, 30, 30, 0.82);
    --panel-strong: #1e1e1e;
    --panel-elevated: #242424;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --muted-soft: rgba(255, 255, 255, 0.55);
    --orange: #ff6a00;
    --orange-soft: rgba(255, 106, 0, 0.18);
    --orange-glow: rgba(255, 106, 0, 0.24);
    --blue: #00e0ff;
    --blue-soft: rgba(0, 224, 255, 0.16);
    --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(255, 106, 0, 0.18), transparent 30%),
        radial-gradient(circle at 80% 12%, rgba(0, 224, 255, 0.14), transparent 25%),
        linear-gradient(180deg, #101010 0%, #111111 54%, #151515 100%);
    color: var(--text);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.marketing-shell {
    position: relative;
    overflow: clip;
}

.bg-orb {
    position: absolute;
    inset: auto;
    width: 36rem;
    height: 36rem;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.48;
    pointer-events: none;
    z-index: 0;
}

.bg-orb-orange {
    top: -8rem;
    left: -8rem;
    background: var(--orange-glow);
}

.bg-orb-blue {
    top: 26rem;
    right: -12rem;
    background: rgba(0, 224, 255, 0.18);
}

.container {
    position: relative;
    z-index: 1;
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 48px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(17, 17, 17, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--orange), #ff924d);
    color: #fff;
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 34px rgba(255, 106, 0, 0.3);
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
}

.brand-copy span {
    color: var(--muted-soft);
    font-size: 0.84rem;
}

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

.site-nav a {
    color: var(--muted);
    font-size: 0.96rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 999px;
}

.hero-section {
    padding-top: 58px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
    align-items: center;
}

.eyebrow,
.section-kicker,
.kicker,
.screen-label,
.pricing-tier,
.comparison-label {
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.16);
}

.hero-copy h1,
.section-heading h2,
.card-header h2,
.final-cta-copy h2 {
    font-family: "Sora", "Avenir Next", sans-serif;
    letter-spacing: -0.04em;
    line-height: 0.96;
    margin: 0;
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(3.3rem, 8vw, 6.2rem);
    max-width: 12ch;
}

.hero-lead {
    margin: 22px 0 0;
    color: var(--text);
    font-size: 1.2rem;
    line-height: 1.55;
    max-width: 58ch;
}

.hero-support {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
    max-width: 60ch;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.98rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
    color: #fff;
    box-shadow: 0 16px 34px rgba(255, 106, 0, 0.26);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--line-strong);
    color: var(--text);
}

.button-block {
    width: 100%;
}

.hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.hero-note,
.feature-card,
.industry-card,
.step-card,
.pricing-card,
.hardware-card,
.showcase-panel,
.comparison-card,
.contact-card,
.signal-card,
.dashboard-card,
.trust-wrap,
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(18px);
}

.hero-note {
    padding: 18px;
    border-radius: var(--radius-md);
}

.hero-note strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.hero-note span {
    color: var(--muted);
    font-size: 0.92rem;
}

.product-stage {
    position: relative;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: var(--shadow-lg);
}

.glass-card {
    border-radius: 28px;
}

.dashboard-card {
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(17, 17, 17, 0.55)),
        #171717;
}

.card-header,
.showcase-head,
.timeline-head,
.section-heading {
    display: grid;
    gap: 10px;
}

.card-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
}

.kicker,
.section-kicker,
.screen-label,
.pricing-tier,
.comparison-label {
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 700;
}

.card-header h2 {
    font-size: 1.8rem;
}

.status-pill,
.toolbar-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-live {
    background: rgba(0, 224, 255, 0.12);
    color: var(--blue);
    border: 1px solid rgba(0, 224, 255, 0.24);
}

.toolbar-chip {
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    border: 1px solid var(--line);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.mini-stat,
.ui-card {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat span,
.ui-card span {
    display: block;
    color: var(--muted-soft);
    font-size: 0.8rem;
}

.mini-stat strong,
.ui-card strong {
    display: block;
    margin-top: 4px;
    font-size: 1.05rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 14px;
    margin-top: 16px;
}

.screen-list,
.timeline-card,
.dashboard-sidebar,
.dashboard-main {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.screen-list {
    padding: 12px;
}

.screen-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
}

.screen-row + .screen-row {
    margin-top: 8px;
}

.screen-row strong,
.screen-row em {
    font-style: normal;
}

.screen-row span {
    display: block;
    color: var(--muted-soft);
    font-size: 0.85rem;
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.screen-dot.online {
    background: #35f29a;
    box-shadow: 0 0 0 6px rgba(53, 242, 154, 0.15);
}

.screen-dot.syncing {
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(255, 106, 0, 0.14);
}

.timeline-card {
    padding: 16px;
}

.timeline-head strong {
    font-size: 1rem;
}

.timeline-head span {
    color: var(--muted-soft);
    font-size: 0.85rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-item span {
    color: var(--orange);
    font-weight: 700;
}

.floating-screens {
    position: absolute;
    right: -12px;
    bottom: 74px;
    display: grid;
    gap: 14px;
    width: min(290px, 50%);
}

.screen-card {
    padding: 18px;
    border-radius: 22px;
    box-shadow: var(--shadow-lg);
}

.menu-screen {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)), #1b1b1b;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-screen strong,
.promo-screen strong,
.pair-screen strong {
    display: block;
    margin-top: 6px;
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1.18rem;
}

.menu-screen ul {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
}

.menu-screen li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
}

.promo-screen {
    justify-self: end;
    width: 88%;
    background: linear-gradient(145deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0.08)), #1a1714;
    border: 1px solid rgba(255, 106, 0, 0.28);
}

.promo-screen p,
.pair-screen p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.pair-screen {
    background: linear-gradient(145deg, rgba(0, 224, 255, 0.18), rgba(255, 255, 255, 0.04)), #151a1c;
    border: 1px solid rgba(0, 224, 255, 0.2);
}

.pair-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    min-height: 56px;
    margin-top: 14px;
    padding: 0 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

.compatibility-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.compatibility-strip span,
.trust-items span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 0.88rem;
}

.trust-strip {
    padding-top: 18px;
}

.trust-wrap {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
}

.trust-wrap p {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.final-cta-copy h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading p,
.final-cta-copy p,
.hardware-card p,
.feature-card p,
.industry-card p,
.step-card p,
.pricing-card p,
.faq-answer p,
.footer-copy {
    margin: 0;
    color: var(--muted);
}

.steps-grid,
.features-grid,
.industry-grid,
.pricing-grid,
.hardware-cards,
.footer-grid {
    display: grid;
    gap: 18px;
}

.steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.feature-card,
.industry-card,
.pricing-card,
.hardware-card {
    padding: 24px;
    border-radius: var(--radius-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 106, 0, 0.14);
    color: var(--orange);
    font-family: "Sora", "Avenir Next", sans-serif;
    font-weight: 800;
}

.step-card h3,
.feature-card h3,
.industry-card h3,
.showcase-panel h3,
.pricing-card h3,
.hardware-card h3,
.site-footer h3 {
    margin: 16px 0 10px;
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1.3rem;
    line-height: 1.15;
}

.features-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
    min-height: 210px;
}

.feature-card:nth-child(2n) {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
        rgba(30, 30, 30, 0.88);
}

.industry-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.industry-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.industry-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -50px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.22), transparent 72%);
    pointer-events: none;
}

.showcase-section .showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 18px;
}

.showcase-panel {
    padding: 24px;
    border-radius: 28px;
}

.showcase-dashboard {
    grid-row: span 2;
}

.showcase-dashboard-ui {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.dashboard-sidebar {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.dashboard-sidebar span {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted-soft);
}

.dashboard-sidebar .active {
    color: var(--text);
    background: rgba(255, 106, 0, 0.14);
}

.dashboard-main {
    padding: 18px;
}

.dashboard-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.dashboard-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.screen-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.preview-frame {
    display: grid;
    align-content: end;
    min-height: 260px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.preview-frame span,
.preview-frame em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
}

.preview-frame strong {
    display: block;
    margin: 10px 0 8px;
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1.22rem;
}

.preview-menu {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent), linear-gradient(180deg, rgba(255, 106, 0, 0.18), rgba(17, 17, 17, 0.9));
}

.preview-promo {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent), linear-gradient(180deg, rgba(0, 224, 255, 0.16), rgba(17, 17, 17, 0.9));
}

.preview-announce {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(17, 17, 17, 0.92));
}

.pairing-flow {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.pairing-box {
    display: grid;
    place-items: center;
    min-height: 190px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(0, 224, 255, 0.14), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(0, 224, 255, 0.16);
    text-align: center;
}

.pairing-box span {
    color: var(--muted-soft);
    font-size: 0.86rem;
}

.pairing-box strong {
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    letter-spacing: 0.18em;
}

.pairing-steps {
    display: grid;
    gap: 12px;
}

.pairing-steps div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pairing-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.16);
    color: var(--orange);
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 18px;
    align-items: start;
}

.benefit-comparison,
.benefits-list {
    display: grid;
    gap: 16px;
}

.comparison-card {
    padding: 22px;
    border-radius: 24px;
}

.comparison-card ul,
.pricing-card ul,
.hardware-card ul,
.footer-links,
.cta-points,
.benefits-list,
.faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comparison-card li,
.pricing-card li,
.hardware-card li,
.benefit-item,
.footer-links li {
    color: var(--muted);
}

.comparison-card li + li,
.pricing-card li + li,
.hardware-card li + li,
.benefit-item + .benefit-item,
.footer-links li + li {
    margin-top: 12px;
}

.comparison-before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
        rgba(30, 30, 30, 0.88);
}

.comparison-after {
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.12), transparent),
        rgba(30, 30, 30, 0.88);
    border-color: rgba(255, 106, 0, 0.18);
}

.benefit-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.benefit-item strong,
.cta-points strong {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 1rem;
}

.benefit-item p,
.cta-points p {
    margin: 0;
    color: var(--muted);
}

.hardware-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 18px;
    align-items: start;
}

.hardware-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hardware-card-accent,
.pricing-card-featured {
    border-color: rgba(255, 106, 0, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 106, 0, 0.14), transparent),
        rgba(30, 30, 30, 0.92);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    display: grid;
    gap: 18px;
}

.pricing-card .button {
    margin-top: auto;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 22px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-family: "Sora", "Avenir Next", sans-serif;
    font-size: 1rem;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 2px;
    background: var(--orange);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.cta-points {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.contact-card {
    padding: 24px;
    border-radius: 28px;
}

.demo-form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    font-weight: 700;
    font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    appearance: none;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--muted-soft);
}

.form-row textarea {
    resize: vertical;
    min-height: 128px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}

.form-note {
    margin: 0;
    color: var(--muted-soft);
    font-size: 0.9rem;
}

.form-note a {
    color: var(--blue);
}

.site-footer {
    padding: 24px 0 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.4fr));
    align-items: start;
}

.footer-brand {
    margin-bottom: 14px;
}

.footer-copy {
    max-width: 42ch;
}

.site-footer h3 {
    margin-top: 0;
    font-size: 1rem;
}

.footer-links a {
    color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1120px) {
    .hero-grid,
    .benefits-grid,
    .hardware-grid,
    .final-cta-grid,
    .showcase-section .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-dashboard {
        grid-row: auto;
    }

    .floating-screens {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 18px;
    }

    .promo-screen {
        width: 100%;
    }

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

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

    .steps-grid,
    .pricing-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        padding: 18px;
        border-radius: 22px;
        background: rgba(20, 20, 20, 0.98);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

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

    .nav-login {
        width: 100%;
    }

    .hero-notes,
    .stats-row,
    .dashboard-grid,
    .showcase-dashboard-ui,
    .screen-preview-grid,
    .hardware-cards {
        grid-template-columns: 1fr;
    }

    .card-header {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 20px), var(--container));
    }

    .section {
        padding: 36px 0;
    }

    .hero-section {
        padding-top: 32px;
    }

    .product-stage,
    .dashboard-card,
    .showcase-panel,
    .contact-card,
    .trust-wrap {
        padding: 20px;
    }

    .site-header .container {
        min-height: 74px;
    }

    .hero-copy h1 {
        font-size: clamp(2.7rem, 15vw, 4.1rem);
    }

    .section-heading h2,
    .final-cta-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .features-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }
}
