:root {
    --ink: #11110f;
    --muted: #686761;
    --paper: #f7f6f1;
    --white: #fff;
    --lime: #d9ff57;
    --line: rgba(17, 17, 15, 0.14);
    --dark-line: rgba(255, 255, 255, 0.16);
    --radius: 26px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button, input, textarea, select { font: inherit; }

/* Public support form */
.support-shell { width: min(1180px, calc(100% - 48px)); min-height: 720px; margin: 0 auto; padding: 70px 0 110px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.support-intro > img { width: 82px; height: 82px; margin: 55px 0 28px; object-fit: cover; border-radius: 22px; box-shadow: 0 15px 32px rgba(0,0,0,.16); }
.support-intro h1 { max-width: 480px; margin: 0; font: 800 clamp(54px, 6vw, 82px)/.92 "Manrope", sans-serif; letter-spacing: -.07em; }
.support-intro > p:not(.eyebrow) { max-width: 460px; margin: 25px 0 0; color: var(--muted); font-size: 17px; }
.support-email { margin-top: 34px; display: flex; align-items: center; gap: 13px; color: var(--muted); font-size: 12px; }
.support-email > i { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); font-size: 18px; }
.support-email span { display: flex; flex-direction: column; }
.support-email a { color: var(--ink); font-weight: 700; }
.support-form-card { min-height: 600px; padding: 38px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 28px 80px rgba(23,22,19,.08); }
.public-support-form { display: flex; flex-direction: column; gap: 21px; }
.public-support-form fieldset { margin: 0; padding: 0; border: 0; }
.public-support-form legend, .public-support-form > label { margin-bottom: 9px; font-size: 12px; font-weight: 800; }
.public-support-form label > span, .form-grid label > span { color: #aaa9a3; font-weight: 500; }
.category-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.category-options label { cursor: pointer; }
.category-options input { position: absolute; opacity: 0; pointer-events: none; }
.category-options span { min-height: 70px; padding: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 13px; color: #66655f; text-align: center; font-size: 10px; font-weight: 700; transition: .15s ease; }
.category-options i { font-size: 20px; }
.category-options input:checked + span { color: var(--ink); border-color: var(--support-accent); background: color-mix(in srgb, var(--support-accent) 8%, white); box-shadow: inset 0 0 0 1px var(--support-accent); }
.public-support-form > label, .form-grid label { display: flex; flex-direction: column; gap: 7px; font-size: 12px; font-weight: 800; }
.public-support-form input, .public-support-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #fbfaf7; transition: border .15s ease, background .15s ease; }
.public-support-form input:focus, .public-support-form textarea:focus { border-color: var(--support-accent); background: #fff; }
.public-support-form textarea { resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.privacy-note { margin: -4px 0 0; display: flex; align-items: center; gap: 7px; color: #85847e; font-size: 10px; }
.public-support-form .button { align-self: flex-start; border: 0; cursor: pointer; }
.form-error { margin: 4px 0 0; color: #bb2937; font-size: 11px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.support-success { min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.support-success > i { width: 70px; height: 70px; display: grid; place-items: center; border-radius: 50%; color: #276c42; background: #e5f7ec; font-size: 38px; }
.support-success h2 { margin: 24px 0 8px; font: 800 34px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.support-success p { max-width: 390px; margin: 0 0 25px; color: var(--muted); }

@media (max-width: 900px) { .support-shell { grid-template-columns: 1fr; gap: 45px; padding-top: 40px; } .support-intro > img { margin-top: 40px; } }
@media (max-width: 620px) { .support-shell { width: min(100% - 28px, 1180px); } .support-form-card { padding: 22px; border-radius: 20px; } .category-options { grid-template-columns: repeat(2, 1fr); } .form-grid { grid-template-columns: 1fr; } }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
    width: min(1320px, calc(100% - 48px));
    min-height: 88px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    font: 800 23px/1 "Manrope", sans-serif;
    letter-spacing: -.04em;
}

.brand img { width: 42px; height: 42px; }

.main-nav {
    display: flex;
    justify-content: center;
    gap: 38px;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a { color: #4f4e49; transition: color .2s ease; }
.main-nav a:hover { color: #000; }

.header-contact,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.header-contact { border: 1px solid var(--line); }
.header-contact:hover, .button:hover { transform: translateY(-2px); }
.header-contact i, .button i, .text-link i, .card-link i { font-size: 18px; }
.button-dark { color: #fff; background: var(--ink); }
.button-dark:hover { background: #292925; }
.button-light { color: var(--ink); background: #fff; }

.hero {
    min-height: 720px;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 40px;
    padding: 48px 0 80px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    color: #55544f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow > span { width: 22px; height: 2px; background: currentColor; }

.hero h1 {
    max-width: 650px;
    margin: 0;
    font: 800 clamp(66px, 7.4vw, 112px)/.88 "Manrope", sans-serif;
    letter-spacing: -.075em;
}

.hero h1 em { color: #7b7a73; font-style: normal; }

.hero-intro {
    max-width: 500px;
    margin: 34px 0 30px;
    color: #4d4c47;
    font-size: 19px;
}

.hero-actions { display: flex; align-items: center; gap: 26px; }

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 52px;
    color: #77766f;
    font-size: 12px;
}

.signal { display: flex; align-items: end; gap: 2px; height: 13px; }
.signal i { display: block; width: 3px; border-radius: 3px; background: #62a63b; }
.signal i:nth-child(1) { height: 5px; }
.signal i:nth-child(2) { height: 9px; }
.signal i:nth-child(3) { height: 13px; }

.app-orbit {
    position: relative;
    width: min(100%, 610px);
    aspect-ratio: 1;
    justify-self: end;
}

.orbit-ring {
    position: absolute;
    inset: 11%;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.orbit-ring-two { inset: 29%; border-style: dashed; }

.orbit-center {
    position: absolute;
    left: 50%; top: 50%;
    width: 112px; height: 112px;
    display: grid; place-items: center;
    border-radius: 34px;
    background: var(--ink);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .18);
    transform: translate(-50%, -50%) rotate(-5deg);
}

.orbit-center img { width: 66px; }

.orbit-app {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    border: 1px solid rgba(17,17,15,.1);
    border-radius: 20px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 16px 40px rgba(26, 25, 22, .12);
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s ease;
}

.orbit-app:hover { transform: translateY(-5px) rotate(1deg); }
.orbit-app img { width: 58px; height: 58px; object-fit: cover; border-radius: 14px; }
.orbit-app-1 { left: 3%; top: 14%; transform: rotate(-4deg); }
.orbit-app-2 { right: 0; top: 22%; transform: rotate(3deg); }
.orbit-app-3 { left: 0; bottom: 19%; transform: rotate(2deg); }
.orbit-app-4 { right: 5%; bottom: 9%; transform: rotate(-3deg); }
.orbit-app-5 { left: 40%; top: 0; transform: rotate(2deg); }
.orbit-app-6 { right: 0; bottom: 36%; transform: rotate(2deg); }
.orbit-app-7 { left: 28%; bottom: 0; transform: rotate(-2deg); }
.orbit-app-8 { left: 2%; top: 43%; transform: rotate(3deg); }

.apps-section { padding: 120px 0; background: #fff; }

.section-heading {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 58px;
}

.section-heading h2,
.principles-intro h2,
.contact-band h2,
.detail-card h2 {
    margin: 0;
    font: 800 clamp(46px, 5vw, 76px)/.98 "Manrope", sans-serif;
    letter-spacing: -.06em;
}

.section-heading > p { max-width: 430px; margin: 0 0 7px; color: var(--muted); font-size: 17px; }

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

.app-card {
    position: relative;
    min-height: 470px;
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.app-card::before {
    content: "";
    position: absolute;
    top: -150px; right: -130px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--app-soft);
    pointer-events: none;
    transition: transform .35s ease;
}

.app-card:hover { transform: translateY(-4px); box-shadow: 0 24px 70px rgba(18,18,16,.09); }
.app-card:hover::before { transform: scale(1.12); }

.app-card-featured { color: #fff; background: var(--ink); border-color: var(--ink); }
.app-card-featured::before { opacity: .16; }
.app-card-featured .app-card-copy > p, .app-card-featured .app-category { color: rgba(255,255,255,.66); }
.app-card-featured .platform-row span { color: rgba(255,255,255,.72); border-color: rgba(255,255,255,.2); }
.app-card-featured .card-link { color: #fff; border-color: rgba(255,255,255,.2); }
.app-card-featured .status { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.14); }

.app-card-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: start; }
.app-icon { width: 82px; height: 82px; border-radius: 22px; object-fit: cover; box-shadow: 0 12px 28px rgba(0,0,0,.16); }

.status, .availability {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    font-size: 11px;
    font-weight: 700;
}

.status i, .availability i { width: 7px; height: 7px; border-radius: 50%; background: var(--app-accent); }

.app-card-copy { position: relative; z-index: 1; max-width: 440px; margin-top: 46px; }
.app-category { margin: 0 0 8px; color: var(--app-accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.app-card h3 { margin: 0; font: 800 43px/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.app-card-copy > p:last-child { margin: 15px 0 0; color: var(--muted); font-size: 15px; }

.platform-row { position: relative; z-index: 1; display: flex; gap: 7px; margin-top: auto; padding-top: 28px; }
.platform-row span { padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; color: #6c6b65; font-size: 10px; font-weight: 700; }

.card-link {
    position: absolute;
    right: 28px; bottom: 28px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
}

.app-card-next { justify-content: space-between; background: var(--lime); border-color: transparent; }
.app-card-next::before { display: none; }
.app-card-next > div:nth-child(2) { max-width: 460px; }
.app-card-next h3 { font-size: 38px; }
.app-card-next p:last-child { max-width: 420px; color: rgba(17,17,15,.65); }
.next-icon { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid rgba(17,17,15,.25); border-radius: 50%; font-size: 28px; }

.principles-section {
    margin-top: 26px;
    padding: 96px 70px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    border-radius: 34px;
    color: #fff;
    background: var(--ink);
}

.eyebrow-light { color: rgba(255,255,255,.6); }
.principles-intro h2 { max-width: 490px; }
.principles-intro > p:last-child { max-width: 440px; margin: 28px 0 0; color: rgba(255,255,255,.6); font-size: 16px; }

.principle-list { border-top: 1px solid var(--dark-line); }
.principle-list article { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--dark-line); }
.principle-list article > span { color: var(--lime); font-size: 12px; font-weight: 700; }
.principle-list h3 { margin: 0; font: 700 23px/1.2 "Manrope", sans-serif; letter-spacing: -.03em; }
.principle-list p { margin: 8px 0 0; color: rgba(255,255,255,.6); font-size: 14px; }

.contact-band {
    margin-top: 26px;
    margin-bottom: 26px;
    min-height: 290px;
    padding: 62px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 34px;
    color: #fff;
    background: #5f58d8;
}

.contact-band .eyebrow { color: rgba(255,255,255,.7); }
.contact-band h2 { font-size: clamp(42px, 5vw, 70px); }

.site-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 44px;
    padding: 74px max(24px, calc((100vw - 1240px) / 2));
    color: #fff;
    background: #090908;
}

.brand-on-dark img { filter: invert(1); }
.footer-brand p { margin: 22px 0 0; color: rgba(255,255,255,.55); }
.site-footer h2 { margin: 4px 0 18px; color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .11em; text-transform: uppercase; }
.site-footer > div:not(.footer-brand) a { display: block; width: max-content; margin: 0 0 10px; color: rgba(255,255,255,.8); font-size: 13px; }
.site-footer small { grid-column: 1 / -1; padding-top: 38px; border-top: 1px solid var(--dark-line); color: rgba(255,255,255,.42); }

/* Product sheet */
.product-hero { min-height: 680px; display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 90px; padding: 58px 0 100px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 46px; color: #66655f; font-size: 13px; font-weight: 700; }
.product-heading { display: flex; align-items: center; gap: 22px; }
.product-icon { width: 92px; height: 92px; object-fit: cover; border-radius: 24px; box-shadow: 0 16px 36px rgba(0,0,0,.14); }
.product-heading p { margin: 0 0 3px; color: var(--app-accent); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-heading h1 { margin: 0; font: 800 52px/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.product-copy > h2 { max-width: 670px; margin: 48px 0 24px; font: 800 clamp(52px, 5vw, 76px)/.94 "Manrope", sans-serif; letter-spacing: -.065em; }
.product-description { max-width: 650px; margin: 0; color: var(--muted); font-size: 17px; }
.product-actions { margin-top: 34px; }
.availability { background: #fff; font-size: 13px; }

.product-poster {
    position: relative;
    min-height: 570px;
    padding: 34px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    color: #fff;
    text-align: center;
    background: var(--app-accent);
    box-shadow: 0 36px 90px color-mix(in srgb, var(--app-accent) 28%, transparent);
}
.product-poster::before { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.product-poster::after { content: ""; position: absolute; width: 270px; height: 270px; border: 1px dashed rgba(255,255,255,.25); border-radius: 50%; }
.poster-noise { position: absolute; inset: 0; opacity: .2; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E"); }
.poster-label { position: absolute; top: 28px; left: 30px; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-poster img { position: relative; z-index: 1; width: 152px; height: 152px; border-radius: 38px; object-fit: cover; box-shadow: 0 24px 50px rgba(0,0,0,.25); transform: rotate(-4deg); }
.product-poster strong { position: relative; z-index: 1; margin-top: 32px; font: 800 46px/1 "Manrope", sans-serif; letter-spacing: -.05em; }
.product-poster small { position: relative; z-index: 1; max-width: 260px; margin-top: 12px; color: rgba(255,255,255,.72); font-size: 13px; }

.product-details { padding: 100px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; border-top: 1px solid var(--line); }
.detail-card h2 { max-width: 520px; font-size: clamp(42px, 4vw, 62px); }
.feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { min-height: 96px; display: grid; grid-template-columns: 45px 1fr 28px; align-items: center; gap: 18px; border-bottom: 1px solid var(--line); }
.feature-list li > span { color: var(--app-accent); font-size: 11px; font-weight: 800; }
.feature-list p { margin: 0; font: 600 19px/1.3 "Manrope", sans-serif; letter-spacing: -.02em; }
.feature-list i { color: var(--app-accent); font-size: 20px; }

.product-meta { margin-bottom: 26px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.product-meta > div { min-height: 120px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.product-meta > div:last-child { border-right: 0; }
.product-meta span { color: #888780; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-meta strong, .product-meta a { font-size: 13px; font-weight: 700; }
.meta-links p { display: flex; gap: 15px; margin: 0; }

/* Legal pages */
.legal-shell { padding: 68px 0 110px; display: grid; grid-template-columns: 320px minmax(0, 760px); justify-content: space-between; gap: 90px; }
.legal-sidebar { position: sticky; top: 28px; align-self: start; }
.legal-sidebar .back-link { margin-bottom: 42px; }
.legal-sidebar > img { width: 68px; height: 68px; object-fit: cover; border-radius: 18px; box-shadow: 0 12px 28px rgba(0,0,0,.12); }
.legal-sidebar > p { margin: 18px 0 7px; color: #676660; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-sidebar h1 { margin: 0; font: 800 46px/1 "Manrope", sans-serif; letter-spacing: -.055em; }
.legal-sidebar > span { display: block; margin-top: 15px; color: #888780; font-size: 12px; }
.legal-language-switch {
    width: max-content;
    margin-top: 22px;
    padding: 4px;
    display: flex;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}
.legal-language-switch a {
    padding: 7px 11px;
    border-radius: 999px;
    color: #76756f;
    font-size: 11px;
    font-weight: 800;
}
.legal-language-switch a.active { color: #fff; background: var(--ink); }
.legal-sidebar nav { margin-top: 44px; padding-top: 18px; border-top: 1px solid var(--line); }
.legal-sidebar nav a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; color: #76756f; font-size: 13px; font-weight: 700; }
.legal-sidebar nav a.active { color: #111; }
.legal-sidebar nav a.active::after { content: "→"; }

.legal-content { padding: 52px 62px; border: 1px solid var(--line); border-radius: 30px; background: #fff; box-shadow: 0 28px 80px rgba(18,18,16,.06); }
.legal-summary { display: grid; grid-template-columns: 50px 1fr; gap: 18px; margin-bottom: 54px; padding: 24px; border-radius: 18px; color: #214630; background: #ecf8f0; }
.legal-summary-terms { color: #593c17; background: #fff5e7; }
.legal-summary > i { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: rgba(255,255,255,.8); font-size: 24px; }
.legal-summary strong { font: 700 16px "Manrope", sans-serif; }
.legal-summary p { margin: 5px 0 0; color: inherit; opacity: .78; font-size: 13px; }
.legal-content section { position: relative; padding: 0 0 42px 52px; }
.legal-content section:last-child { padding-bottom: 0; }
.legal-number { position: absolute; left: 0; top: 4px; color: #9b9a94; font-size: 10px; font-weight: 800; }
.legal-content h2 { margin: 0 0 17px; font: 700 25px/1.2 "Manrope", sans-serif; letter-spacing: -.035em; }
.legal-content h3 { margin: 24px 0 8px; font: 700 15px "Manrope", sans-serif; }
.legal-content p { margin: 0 0 14px; color: #5d5c56; font-size: 14px; line-height: 1.75; }
.legal-content section a { color: #3831a3; text-decoration: underline; text-underline-offset: 3px; }

[data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
    .site-header { grid-template-columns: auto 1fr; }
    .main-nav { display: none; }
    .header-contact { justify-self: end; }
    .hero, .product-hero, .product-details, .principles-section, .legal-shell { grid-template-columns: 1fr; }
    .hero { padding-top: 80px; }
    .hero-copy { text-align: center; }
    .hero .eyebrow, .hero-actions, .hero-note { justify-content: center; }
    .hero-intro { margin-inline: auto; }
    .app-orbit { width: min(600px, 100%); justify-self: center; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .principles-section { gap: 58px; }
    .contact-band { align-items: flex-start; flex-direction: column; }
    .site-footer { grid-template-columns: 1.5fr repeat(2, 1fr); }
    .footer-brand { grid-row: span 2; }
    .product-hero { gap: 50px; }
    .product-poster { min-height: 520px; }
    .product-details { gap: 50px; }
    .legal-sidebar { position: static; }
    .legal-sidebar nav { display: flex; gap: 28px; }
}

@media (max-width: 720px) {
    .shell, .site-header { width: min(100% - 28px, 1240px); }
    .site-header { min-height: 76px; }
    .header-contact { min-height: 42px; padding: 0 16px; }
    .hero { min-height: auto; padding: 64px 0 56px; gap: 44px; }
    .hero h1 { font-size: clamp(56px, 17vw, 78px); }
    .hero-intro { margin-top: 26px; font-size: 16px; }
    .hero-actions { flex-direction: column; gap: 18px; }
    .hero-note { margin-top: 36px; }
    .app-orbit { aspect-ratio: .9; }
    .orbit-ring { inset: 8%; }
    .orbit-ring-two { inset: 28%; }
    .orbit-center { width: 88px; height: 88px; border-radius: 28px; }
    .orbit-center img { width: 52px; }
    .orbit-app { padding-right: 9px; }
    .orbit-app img { width: 45px; height: 45px; border-radius: 12px; }
    .orbit-app span { display: none; }
    .orbit-app-1 { left: 2%; }
    .orbit-app-2 { right: 2%; }
    .orbit-app-3 { left: 2%; }
    .apps-section { padding: 80px 0; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 48px; }
    .app-grid { grid-template-columns: 1fr; }
    .app-card { min-height: 440px; padding: 24px; }
    .app-card h3 { font-size: 38px; }
    .app-card-copy { margin-top: 38px; }
    .card-link { right: 24px; bottom: 24px; }
    .principles-section { margin-top: 14px; padding: 56px 26px; border-radius: 24px; }
    .principles-intro h2 { font-size: 47px; }
    .contact-band { margin-top: 14px; margin-bottom: 14px; padding: 48px 26px; border-radius: 24px; }
    .contact-band .button { width: 100%; font-size: 12px; }
    .site-footer { grid-template-columns: 1fr 1fr; padding: 58px 28px; }
    .footer-brand { grid-column: 1 / -1; grid-row: auto; }
    .site-footer small { margin-top: 15px; }
    .product-hero { padding: 45px 0 70px; }
    .product-heading { align-items: flex-start; }
    .product-icon { width: 72px; height: 72px; border-radius: 19px; }
    .product-heading h1 { font-size: 39px; }
    .product-copy > h2 { margin-top: 38px; font-size: 50px; }
    .product-poster { min-height: 440px; border-radius: 26px; }
    .product-poster img { width: 126px; height: 126px; border-radius: 32px; }
    .product-details { padding: 72px 0; }
    .detail-card h2 { font-size: 44px; }
    .feature-list p { font-size: 16px; }
    .product-meta { grid-template-columns: 1fr 1fr; }
    .product-meta > div:nth-child(2) { border-right: 0; }
    .product-meta > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .legal-shell { padding-top: 45px; gap: 40px; }
    .legal-sidebar h1 { font-size: 42px; }
    .legal-content { padding: 26px 20px; border-radius: 22px; }
    .legal-summary { grid-template-columns: 1fr; margin-bottom: 44px; }
    .legal-content section { padding-left: 34px; }
}
