:root {
    --ink: #171210;
    --muted: #6d6260;
    --paper: #f7f0e8;
    --cream: #fffaf1;
    --white: #ffffff;
    --line: rgba(23, 18, 16, .13);
    --purple: #6157f4;
    --violet: #b866d9;
    --pink: #ee7ab8;
    --lime: #d9f45f;
    --mint: #74dfba;
    --sky: #62c7f2;
    --orange: #f4a65f;
    --brown: #9d673f;
    --shadow: 0 28px 80px rgba(23, 18, 16, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

#about,
#services,
#careers,
#contact,
.page-hero,
.section,
.bento-section,
.showcase-strip,
.visual-lab,
.cta {
    scroll-margin-top: 120px;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(238, 122, 184, .18), transparent 26rem),
        radial-gradient(circle at 92% 12%, rgba(98, 199, 242, .22), transparent 24rem),
        var(--paper);
    line-height: 1.55;
}

a { color: inherit; }

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(23,18,16,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23,18,16,.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.site-header {
    isolation: isolate;
    position: sticky;
    top: 16px;
    z-index: 20;
    width: min(1180px, calc(100% - 28px));
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 12px;
    border: 1px solid rgba(127, 111, 255, .32);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(9, 13, 37, .96), rgba(38, 27, 83, .94) 48%, rgba(4, 65, 79, .92)),
        #080914;
    box-shadow:
        0 18px 48px rgba(43,38,137,.23),
        inset 0 1px 0 rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transform: translateY(0);
    transition:
        transform .28s ease,
        padding .22s ease,
        width .22s ease,
        box-shadow .22s ease,
        opacity .22s ease;
}

.site-header.nav-compact {
    width: min(1040px, calc(100% - 28px));
    padding: 6px 10px;
    box-shadow:
        0 12px 32px rgba(43,38,137,.19),
        inset 0 1px 0 rgba(255,255,255,.08);
}

.site-header.nav-compact .brand {
    min-height: 42px;
}

.site-header.nav-compact .brand-logo {
    height: 34px;
    max-width: 168px;
}

.site-header.nav-hidden {
    transform: translateY(calc(-100% - 28px));
    opacity: .08;
    pointer-events: none;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(123,60,255,.64), rgba(8,217,196,.48), rgba(115,255,120,.34));
    filter: blur(10px);
    opacity: .34;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 3px 12px;
    text-decoration: none;
    border-radius: 999px;
    background: rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(38px, 4.2vw, 48px);
    max-width: 210px;
    object-fit: contain;
    filter: saturate(1.08) contrast(1.03);
}

.brand-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--ink);
    color: var(--lime);
    font-weight: 900;
    box-shadow: inset 0 -10px 18px rgba(255,255,255,.08);
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.02;
}

.brand strong { font-size: 18px; }
.brand small { color: var(--muted); font-weight: 700; font-size: 12px; }

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
}

.site-nav a {
    text-decoration: none;
    color: rgba(255,255,255,.86);
    font-weight: 900;
    padding: 11px 16px;
    border-radius: 999px;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.1));
    color: var(--white);
    transform: translateY(-1px);
}

.nav-cta {
    background: linear-gradient(135deg, #8f61ff, #08d9c4 54%, #9cff73);
    color: #050507 !important;
    border: 1px solid rgba(255,255,255,.16);
}

.nav-cta:hover,
.nav-cta.active {
    background: linear-gradient(135deg, #ffffff, #dffdf9) !important;
    color: #050507 !important;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.hero {
    width: min(1340px, calc(100% - 28px));
    min-height: calc(100vh - 88px);
    margin: 18px auto 34px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(380px, .97fr);
    align-items: center;
    gap: clamp(22px, 4vw, 56px);
    padding: clamp(42px, 7vw, 92px);
    border-radius: 44px;
    color: var(--white);
    background:
        radial-gradient(circle at 88% 12%, rgba(217,244,95,.58), transparent 18rem),
        radial-gradient(circle at 44% 18%, rgba(255,255,255,.18), transparent 16rem),
        linear-gradient(128deg, #4b45e8 0%, #b866d9 42%, #ec7ab3 68%, #a66b3d 100%);
    box-shadow: var(--shadow);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 38% 62% 44% 56%;
    background: rgba(255,255,255,.16);
}

.hero::before {
    right: -120px;
    bottom: -150px;
    width: 460px;
    height: 460px;
}

.hero::after {
    left: 48%;
    top: 8%;
    width: 160px;
    height: 160px;
    background: rgba(217,244,95,.34);
}

.hero > * { position: relative; z-index: 1; }

.eyebrow {
    margin: 0 0 16px;
    color: var(--lime);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
}

h1, h2, h3 {
    margin: 0 0 16px;
    color: var(--ink);
    line-height: 1.02;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 820px;
    color: var(--white);
    font-size: clamp(36px, 4.7vw, 58px);
}

.hero p {
    max-width: 670px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary { background: var(--lime); color: var(--ink); box-shadow: 0 18px 36px rgba(23,18,16,.18); }
.btn.secondary { color: var(--white); background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.42); }

.hero-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(148px, auto);
    gap: 16px;
    transform: rotate(-2.5deg);
    animation: floatPanel 7s ease-in-out infinite;
}

.board-card {
    min-height: 148px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 23px;
    border-radius: 30px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(23,18,16,.18);
}

.board-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.board-card strong {
    display: block;
    font-size: clamp(32px, 4vw, 52px);
    line-height: .9;
}

.board-card span { font-weight: 900; }
.board-card.dark { grid-row: span 2; background: var(--ink); color: var(--white); }
.board-card.dark small { color: var(--lime); }
.board-card.lime { background: var(--lime); }
.board-card.pink { background: var(--pink); color: var(--white); }
.board-card.pink small { color: rgba(255,255,255,.78); }
.board-card.white { background: var(--white); }
.board-card.image-card {
    grid-column: span 2;
    min-height: 190px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(23,18,16,.18), rgba(23,18,16,.58)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.2) 0 1px, transparent 1px 12px),
        linear-gradient(135deg, var(--mint), var(--sky) 45%, var(--purple));
}

.page-hero {
    width: min(1340px, calc(100% - 28px));
    margin: 18px auto 34px;
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(38px, 6vw, 74px);
    border-radius: 44px;
    background:
        radial-gradient(circle at 90% 15%, rgba(217,244,95,.75), transparent 14rem),
        radial-gradient(circle at 12% 15%, rgba(98,199,242,.35), transparent 18rem),
        linear-gradient(128deg, rgba(255,255,255,.94), rgba(255,250,241,.78));
    box-shadow: 0 18px 60px rgba(23,18,16,.09);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: -48px;
    width: 280px;
    height: 180px;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    transform: rotate(-10deg);
    opacity: .82;
}

.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { max-width: 980px; font-size: clamp(34px, 5.4vw, 64px); }

.section,
.bento-section,
.focus-strip,
.showcase-strip,
.visual-lab {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto 34px;
}

.product-feature {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: clamp(38px, 6vw, 72px);
    border-radius: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(217,244,95,.34), transparent 14rem),
        linear-gradient(135deg, #080914, #4b2c85 52%, #047481);
    box-shadow: var(--shadow);
}

.product-feature h2 {
    color: var(--white);
    font-size: clamp(30px, 3.9vw, 52px);
    max-width: 720px;
}

.product-feature p {
    color: rgba(255,255,255,.76);
    max-width: 660px;
}

.product-feature .btn {
    margin-top: 24px;
}

.product-shots {
    min-height: 470px;
    position: relative;
}

.product-shots img {
    position: absolute;
    width: min(280px, 48%);
    height: auto;
    border-radius: 36px;
    filter: drop-shadow(0 24px 58px rgba(0,0,0,.34));
}

.product-shots img:first-child {
    right: 34%;
    top: 0;
    transform: rotate(-5deg);
}

.product-shots img:last-child {
    right: 2%;
    top: 70px;
    transform: rotate(7deg);
}

.app-shot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.app-shot-grid article {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(23,18,16,.08);
}

.app-shot-grid img {
    display: block;
    width: min(250px, 100%);
    margin: 0 auto 22px;
    border-radius: 34px;
    filter: drop-shadow(0 16px 34px rgba(23,18,16,.18));
}

.app-shot-grid h3 {
    font-size: clamp(22px, 2.3vw, 30px);
}

.app-shot-grid p {
    margin-top: auto;
    color: var(--muted);
}

.download-panel {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: center;
}

.qr-card {
    padding: 22px;
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(23,18,16,.08);
    text-align: center;
}

.qr-card img {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 16px;
    border-radius: 16px;
}

.qr-card span {
    display: block;
    overflow-wrap: anywhere;
    color: var(--muted);
    font-size: 13px;
}

.section {
    padding: clamp(42px, 6vw, 76px);
    border-radius: 38px;
}

.muted {
    background: rgba(255,250,241,.78);
    box-shadow: 0 18px 60px rgba(23,18,16,.08);
}

.section-heading {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading h2,
.visual-lab h2,
.intro-tile h2 {
    font-size: clamp(30px, 3.8vw, 52px);
    max-width: 900px;
}

.lead { max-width: 920px; color: var(--muted); font-size: 21px; }

.bento-section {
    display: grid;
    grid-template-columns: 1.35fr .8fr .8fr;
    gap: 18px;
}

.bento,
.page-bento > div:first-child {
    min-height: 230px;
    padding: 30px;
    border-radius: 34px;
    background: rgba(255,250,241,.86);
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: 0 18px 50px rgba(23,18,16,.08);
}

.intro-tile,
.page-bento > div:first-child {
    grid-row: span 2;
    background:
        radial-gradient(circle at 100% 0, rgba(98,199,242,.28), transparent 12rem),
        rgba(255,255,255,.72);
}

.bento p,
.page-bento p,
.card p,
.visual-lab p {
    color: var(--muted);
}

.stat-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--lime);
}

.stat-tile strong {
    display: block;
    font-size: clamp(38px, 4.6vw, 62px);
    line-height: .85;
}

.stat-tile span { font-weight: 900; }
.stat-tile.accent { background: var(--pink); color: var(--white); }
.stat-tile.dark { grid-column: span 2; background: var(--ink); color: var(--white); }
.stat-tile.accent span,
.stat-tile.dark span { color: rgba(255,255,255,.86); }

.showcase-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.showcase-strip article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border-radius: 34px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.showcase-strip article:nth-child(2) { background: var(--purple); }
.showcase-strip article:nth-child(3) { background: var(--brown); }
.showcase-strip span { color: var(--lime); font-weight: 900; }
.showcase-strip h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 40px); }
.showcase-strip p { margin: 0; color: rgba(255,255,255,.82); }

.focus-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.focus-card {
    min-height: 210px;
    padding: 24px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 16px 42px rgba(23,18,16,.07);
}

.focus-card:nth-child(1) { background: #f5edff; }
.focus-card:nth-child(2) { background: #effbf6; }
.focus-card:nth-child(3) { background: #eef7ff; }
.focus-card:nth-child(4) { background: #fff3df; }

.focus-card span {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--purple);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.focus-card h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.08;
}

.focus-card p {
    margin: 0;
    color: var(--muted);
}

.card-grid,
.service-mosaic {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.what-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 34px;
    color: var(--ink);
    background:
        radial-gradient(circle at 92% 0%, rgba(217,244,95,.55), transparent 10rem),
        var(--white);
    box-shadow: 0 18px 46px rgba(23,18,16,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.what-card:nth-child(2) {
    background:
        radial-gradient(circle at 100% 0%, rgba(98,199,242,.5), transparent 10rem),
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,250,241,.9));
}

.what-card:nth-child(3) {
    background:
        radial-gradient(circle at 100% 0%, rgba(238,122,184,.46), transparent 10rem),
        var(--white);
}

.what-card:hover {
    transform: translateY(-8px) rotate(-.4deg);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 76px;
    height: 76px;
    margin-bottom: 28px;
    border-radius: 26px;
    background:
        linear-gradient(135deg, var(--purple), var(--pink));
    box-shadow: inset 0 -12px 20px rgba(23,18,16,.15);
}

.what-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--sky), var(--mint)); }
.what-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--orange), var(--brown)); }
.what-card h2,
.what-card h3 { font-size: clamp(24px, 2.5vw, 34px); }
.what-card p { color: var(--muted); }

.read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
}

.read-more::after {
    content: ">";
    margin-left: 10px;
}

.service-detail-hero p {
    max-width: 820px;
    color: var(--muted);
    font-size: 21px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.detail-grid article {
    min-height: 260px;
    padding: 24px;
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 18px 46px rgba(23,18,16,.08);
}

.detail-grid article:nth-child(2) { background: #f5edff; }
.detail-grid article:nth-child(3) { background: #effbf6; }
.detail-grid article:nth-child(4) { background: #fff3df; }
.detail-grid h3 { font-size: 28px; }
.detail-grid p { color: var(--muted); }

.process-section {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto 34px;
    padding: clamp(42px, 6vw, 76px);
    border-radius: 38px;
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
}

.process-section h2,
.process-section h3 { color: var(--white); }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.process-steps div {
    min-height: 240px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
}

.process-steps span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--lime);
    font-weight: 900;
}

.process-steps p { color: rgba(255,255,255,.72); }

.outcome-list {
    display: grid;
    gap: 12px;
}

.outcome-list span {
    display: block;
    padding: 18px 20px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(23,18,16,.07);
    font-weight: 900;
}

.service-mosaic .card:nth-child(1),
.service-mosaic .card:nth-child(6) {
    grid-column: span 2;
}

.service-stack {
    display: grid;
    gap: 14px;
}

.card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 28px;
    border-radius: 32px;
    background: var(--white);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: 0 18px 46px rgba(23,18,16,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-7px) rotate(-.5deg);
    box-shadow: var(--shadow);
}

.card::before {
    content: "";
    display: block;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
}

.card:nth-child(3n+2)::before { background: linear-gradient(135deg, var(--lime), var(--mint)); }
.card:nth-child(3n+3)::before { background: linear-gradient(135deg, var(--orange), var(--brown)); }
.card h2 { font-size: clamp(26px, 3vw, 40px); }
.card h3 { font-size: clamp(24px, 3vw, 36px); }

.service-row {
    min-height: 132px;
    display: grid;
    grid-template-columns: 300px 1fr 72px;
    align-items: center;
    gap: 28px;
}

.service-row::before {
    margin: 0;
    grid-column: 3;
    grid-row: 1;
}

.service-row h3,
.service-row p { margin: 0; }

.visual-lab {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
    padding: clamp(34px, 5vw, 64px);
    border-radius: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 20%, rgba(217,244,95,.45), transparent 14rem),
        linear-gradient(135deg, var(--ink), #4b2c85 52%, var(--purple));
    box-shadow: var(--shadow);
}

.visual-lab h2 { color: var(--white); }
.visual-lab p { color: rgba(255,255,255,.78); }

.lab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.lab-grid span {
    min-height: 110px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 24px;
    font-weight: 900;
}

.lab-grid span:nth-child(2),
.lab-grid span:nth-child(5) {
    background: var(--lime);
    color: var(--ink);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
    gap: 24px;
    align-items: start;
}

.form-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(238,122,184,.18), transparent 14rem),
        rgba(255,250,241,.72);
}

.form,
.contact-box {
    padding: 30px;
    border-radius: 34px;
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.8);
    box-shadow: var(--shadow);
}

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

.form label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 900;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--cream);
    color: var(--ink);
    font: inherit;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: 3px solid rgba(97,87,244,.18);
    border-color: var(--purple);
}

.mini-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.mini-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(23,18,16,.07);
}

.product-feature .mini-tags span {
    background: rgba(255,255,255,.12);
    color: var(--white);
    border: 1px solid rgba(255,255,255,.2);
    box-shadow: none;
}

.check-list {
    margin: 0;
    padding: 28px 28px 28px 48px;
    border-radius: 32px;
    background: var(--ink);
    color: rgba(255,255,255,.86);
    font-weight: 800;
}

.check-list li { margin-bottom: 12px; }

.cta {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto 34px;
    padding: clamp(42px, 6vw, 76px);
    border-radius: 38px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(217,244,95,.38), transparent 13rem),
        linear-gradient(135deg, var(--purple), var(--pink) 55%, var(--brown));
    box-shadow: var(--shadow);
}

.cta h2 { color: var(--white); max-width: 860px; font-size: clamp(30px, 3.8vw, 52px); }
.cta p { max-width: 720px; color: rgba(255,255,255,.82); }

.site-footer {
    width: min(1340px, calc(100% - 28px));
    margin: 0 auto 14px;
    overflow: hidden;
    padding: 24px;
    border-radius: 42px;
    color: var(--white);
    background: var(--ink);
}

.footer-marquee {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.footer-marquee span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: var(--lime);
    font-weight: 900;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .7fr;
    gap: 28px;
    padding: 26px;
}

.footer-brand .brand-mark { margin-bottom: 18px; }
.footer-logo {
    display: block;
    width: min(320px, 100%);
    height: auto;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: #050507;
    border: 1px solid rgba(255,255,255,.1);
}
.site-footer h2,
.site-footer h3 { color: var(--white); }
.site-footer p { color: rgba(255,255,255,.72); }
.site-footer a { color: var(--lime); }

.copyright {
    padding: 18px 26px 0;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
}

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

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

@keyframes floatPanel {
    0%, 100% { transform: rotate(-2.5deg) translateY(0); }
    50% { transform: rotate(-2.5deg) translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 980px) {
    .site-header {
        border-radius: 28px;
        align-items: flex-start;
    }

    .nav-toggle { display: block; margin: 7px; }

    .site-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 28px;
        background:
            linear-gradient(135deg, rgba(9, 13, 37, .98), rgba(38, 27, 83, .97) 48%, rgba(4, 65, 79, .96)),
            #080914;
        box-shadow: var(--shadow);
    }

    .site-nav.open { display: flex; }
    .nav-links { flex-direction: column; align-items: stretch; border-radius: 22px; }
    .site-nav a { text-align: center; }

    .hero,
    .bento-section,
    .showcase-strip,
    .focus-strip,
    .visual-lab,
    .product-feature,
    .download-panel,
    .two-column,
    .footer-grid,
    .section-heading {
        grid-template-columns: 1fr;
    }

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

    .hero { min-height: auto; }
    .hero-board {
        grid-template-columns: 1fr;
        transform: none;
        animation: none;
    }

    .board-card.dark,
    .board-card.image-card,
    .stat-tile.dark,
    .service-mosaic .card:nth-child(1),
    .service-mosaic .card:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .card-grid,
    .what-grid,
    .focus-strip,
    .app-shot-grid,
    .service-mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-shots {
        min-height: 430px;
    }

    .product-shots img:first-child {
        left: 12%;
        right: auto;
    }

    .product-shots img:last-child {
        right: 12%;
    }

    .service-row {
        grid-template-columns: 1fr 70px;
    }

    .service-row p { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    body { overflow-x: hidden; }
    .site-header { width: calc(100% - 18px); top: 9px; margin-top: 9px; }
    .brand { min-height: 44px; padding: 3px 8px; }
    .brand-logo { width: auto; height: 32px; max-width: 142px; }
    .brand-mark { width: 42px; height: 42px; }

    .hero,
    .page-hero,
    .section,
    .focus-strip,
    .visual-lab,
    .product-feature,
    .download-panel,
    .cta,
    .site-footer {
        width: calc(100% - 18px);
        border-radius: 30px;
    }

    .hero,
    .page-hero,
    .section,
    .visual-lab,
    .product-feature,
    .download-panel,
    .cta {
        padding: 24px;
    }

    .hero h1 { font-size: clamp(32px, 9.5vw, 46px); }
    .page-hero h1 { font-size: clamp(32px, 9vw, 44px); }
    .hero p,
    .page-hero p {
        font-size: 16px;
    }

    .hero-board,
    .showcase-strip,
    .bento-section {
        gap: 12px;
    }

    .board-card,
    .bento,
    .focus-card,
    .card,
    .what-card,
    .showcase-strip article {
        min-height: auto;
        padding: 22px;
        border-radius: 24px;
    }

    .board-card strong,
    .stat-tile strong {
        font-size: 42px;
    }

    .card-grid,
    .what-grid,
    .focus-strip,
    .service-mosaic,
    .lab-grid,
    .app-shot-grid {
        grid-template-columns: 1fr;
    }

    .product-shots {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-shots img,
    .product-shots img:first-child,
    .product-shots img:last-child {
        position: static;
        width: min(260px, 100%);
        margin: 0 auto;
        transform: none;
    }

    .detail-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .service-row { grid-template-columns: 1fr; }
    .service-row::before { grid-column: auto; }
    .footer-grid { padding: 8px; }
    .footer-logo { width: 100%; }
    .qr-card { padding: 16px; }
    .btn { width: 100%; }
}
