:root {
    --ink: #191917;
    --ink-soft: #34342f;
    --muted: #67645d;
    --paper: #ffc933;
    --paper-deep: #f2ad2f;
    --cream: #fff8e8;
    --surface: #fffdf7;
    --surface-strong: #ffffff;
    --green: #176c55;
    --mint: #dff3de;
    --blue: #255fcb;
    --sky: #dcecff;
    --coral: #db493d;
    --rose: #ffe2dc;
    --line: rgba(25, 25, 23, 0.14);
    --line-strong: rgba(25, 25, 23, 0.24);
    --shadow: 0 24px 60px rgba(25, 25, 23, 0.18);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        linear-gradient(rgba(25, 25, 23, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 25, 23, 0.02) 1px, transparent 1px),
        var(--surface);
    background-size: 32px 32px, 32px 32px, auto;
    color: var(--ink);
    font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 4px;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.site-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(255, 253, 247, 0.9);
    border-bottom: 1px solid var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-nav::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--paper), var(--green), var(--blue), var(--coral));
    content: "";
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 22px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
}

.logo span,
.footer-logo span {
    white-space: nowrap;
}

.logo img,
.footer-logo img {
    border-radius: var(--radius);
    box-shadow: 0 8px 20px rgba(242, 173, 47, 0.34);
}

.nav-links,
.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a,
.footer-links a {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
    color: var(--ink);
}

.nav-cta,
.button {
    border-radius: var(--radius);
    font-weight: 900;
    text-decoration: none;
    transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-cta {
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 9px 14px;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--ink);
    color: white;
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 88svh;
    overflow: hidden;
    padding: 118px 0 54px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.18) 46%, rgba(255, 255, 255, 0) 72%),
        linear-gradient(rgba(25, 25, 23, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 25, 23, 0.055) 1px, transparent 1px),
        var(--paper);
    background-size: auto, 44px 44px, 44px 44px, auto;
    border-bottom: 1px solid var(--line-strong);
}

.hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 12px;
    background: repeating-linear-gradient(90deg, var(--ink) 0 40px, var(--green) 40px 80px, var(--blue) 80px 120px, var(--coral) 120px 160px);
    content: "";
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding-top: 24px;
}

.eyebrow {
    color: var(--coral);
    font-size: 0.92rem;
    font-weight: 900;
    margin-bottom: 14px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.05;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 900;
}

h1 {
    font-size: 4.65rem;
    max-width: 8.6em;
    margin-bottom: 22px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 18px;
}

h3 {
    font-size: 1.18rem;
}

.hero-copy {
    max-width: 560px;
    color: var(--ink-soft);
    font-size: 1.34rem;
    font-weight: 700;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
}

.button.primary {
    background: var(--ink);
    color: white;
    box-shadow: 0 12px 26px rgba(25, 25, 23, 0.22);
}

.button.secondary {
    background: var(--surface-strong);
    border: 1px solid var(--line-strong);
    color: var(--ink);
}

.button:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 720px;
    margin-top: 38px;
}

.hero-stats div {
    min-height: 112px;
    padding: 16px;
    background: rgba(255, 253, 247, 0.78);
    border: 1px solid rgba(25, 25, 23, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(25, 25, 23, 0.08);
}

.hero-stats dt {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 900;
}

.hero-stats dd {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-phone,
.hero-watch,
.receipt-strip {
    position: absolute;
    box-shadow: var(--shadow);
}

.hero-phone {
    background: #111;
    border: 10px solid #111;
    border-radius: 42px;
}

.hero-phone-main {
    right: max(-24px, calc((100vw - 1180px) / 2 - 86px));
    top: 92px;
    width: 330px;
    transform: rotate(3deg);
    animation: drift-main 8s ease-in-out infinite;
}

.hero-phone-side {
    right: max(96px, calc((100vw - 1180px) / 2 + 20px));
    bottom: 40px;
    width: 214px;
    transform: rotate(-7deg);
    animation: drift-side 9s ease-in-out infinite;
}

.hero-watch {
    right: max(-18px, calc((100vw - 1180px) / 2 - 72px));
    bottom: 78px;
    width: 168px;
    border: 8px solid #111;
    border-radius: 32px;
    background: #111;
    transform: rotate(-4deg);
    animation: drift-watch 7s ease-in-out infinite;
}

.receipt-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 210px;
    min-height: 52px;
    padding: 12px 14px;
    background: var(--surface-strong);
    border: 1px solid var(--line-strong);
    border-left: 7px solid var(--green);
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 900;
}

.receipt-strip span {
    color: var(--muted);
    font-size: 0.9rem;
}

.receipt-one {
    top: 150px;
    right: max(128px, calc((100vw - 1180px) / 2 + 60px));
    transform: rotate(-4deg);
}

.receipt-two {
    right: max(98px, calc((100vw - 1180px) / 2 + 48px));
    bottom: 168px;
    border-left-color: var(--blue);
    transform: rotate(5deg);
}

.cred-strip {
    background: var(--ink);
    color: white;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cred-grid div {
    min-height: 118px;
    padding: 24px 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.cred-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.cred-grid strong,
.cred-grid span {
    display: block;
}

.cred-grid strong {
    font-size: 1.08rem;
}

.cred-grid span {
    color: rgba(255, 255, 255, 0.76);
    margin-top: 7px;
}

section:not(.hero):not(.cred-strip) {
    padding: 96px 0;
}

section[id] {
    scroll-margin-top: 82px;
}

.section-grid,
.product-grid,
.privacy-grid,
.platform-layout,
.launch-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 54px;
    align-items: center;
}

.section-heading > p:not(.eyebrow),
.pricing .section-heading > p,
.platform-layout .section-heading > p:not(.eyebrow),
.launch-inner p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 650;
    max-width: 620px;
}

.centered {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

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

.timeline article,
.feature-rows article,
.use-case-grid article,
.pricing-card,
.platform-grid article,
.faq-item,
.support-card {
    background: var(--surface-strong);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(25, 25, 23, 0.08);
}

.timeline article {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px 18px;
    padding: 20px;
}

.timeline span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    font-weight: 900;
}

.timeline p,
.feature-rows span,
.use-case-grid p,
.pricing-card p,
.pricing-card li,
.platform-grid span,
.faq-item p,
.support-card p,
.legal-page p,
.legal-page li {
    color: var(--muted);
}

.product-surface {
    background:
        linear-gradient(90deg, rgba(37, 95, 203, 0.08), transparent 42%),
        linear-gradient(rgba(25, 25, 23, 0.045) 1px, transparent 1px),
        var(--cream);
    background-size: auto, 28px 28px, auto;
    border-block: 1px solid var(--line);
}

.phone-stack {
    position: relative;
    min-height: 610px;
}

.phone-shot {
    position: absolute;
    background: #111;
    border: 10px solid #111;
    border-radius: 42px;
    box-shadow: var(--shadow);
}

.shot-front {
    left: 22px;
    top: 44px;
    width: 255px;
    z-index: 2;
    transform: rotate(-4deg);
}

.shot-back {
    right: 18px;
    top: 0;
    width: 280px;
    transform: rotate(5deg);
}

.watch-shot {
    position: absolute;
    right: 98px;
    bottom: 38px;
    width: 180px;
    z-index: 3;
    background: #111;
    border: 8px solid #111;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.feature-list > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
    font-weight: 650;
    margin-bottom: 22px;
}

.feature-rows {
    display: grid;
    gap: 12px;
}

.feature-rows article {
    padding: 18px 20px;
    border-left: 7px solid var(--green);
}

.feature-rows article:nth-child(2) {
    border-left-color: var(--blue);
}

.feature-rows article:nth-child(3) {
    border-left-color: var(--coral);
}

.feature-rows article:nth-child(4) {
    border-left-color: var(--paper-deep);
}

.feature-rows strong,
.feature-rows span {
    display: block;
}

.feature-rows span {
    margin-top: 4px;
}

.privacy-panel {
    background: var(--green);
    color: white;
}

.privacy-panel .eyebrow,
.privacy-panel p,
.privacy-panel h2 {
    color: white;
}

.privacy-panel p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
}

.privacy-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.privacy-list li {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
}

.privacy-list strong,
.privacy-list span {
    display: block;
}

.privacy-list span {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 4px;
}

.use-cases {
    background: var(--surface);
}

.use-case-grid,
.pricing-grid,
.platform-grid,
.faq-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.use-case-grid article {
    min-height: 230px;
    padding: 24px;
}

.use-case-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 10px;
    background: var(--sky);
    border-radius: var(--radius);
    color: var(--blue);
    font-weight: 900;
}

.use-case-grid article:nth-child(2) span {
    background: var(--mint);
    color: var(--green);
}

.use-case-grid article:nth-child(3) span {
    background: var(--rose);
    color: var(--coral);
}

.use-case-grid h3,
.pricing-card h3,
.faq-item h3 {
    margin-bottom: 10px;
}

.pricing {
    background: var(--cream);
    border-block: 1px solid var(--line);
}

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 26px;
}

.pricing-card.featured {
    border-color: rgba(219, 73, 61, 0.52);
    box-shadow: 0 22px 46px rgba(219, 73, 61, 0.14);
}

.featured-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    background: var(--coral);
    border-radius: var(--radius);
    color: white;
    font-size: 0.85rem;
    font-weight: 900;
}

.price {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-family: "Avenir Next", "Trebuchet MS", Arial, sans-serif;
    font-size: 1rem;
}

.pricing-card ul {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    padding-left: 20px;
}

.platform-layout {
    align-items: start;
}

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

.platform-grid article {
    min-height: 150px;
    padding: 22px;
    border-top: 7px solid var(--paper);
}

.platform-grid article:nth-child(2) {
    border-top-color: var(--green);
}

.platform-grid article:nth-child(3) {
    border-top-color: var(--blue);
}

.platform-grid article:nth-child(4) {
    border-top-color: var(--coral);
}

.platform-grid strong,
.platform-grid span {
    display: block;
}

.platform-grid span {
    margin-top: 8px;
}

.faq {
    background: var(--surface);
}

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

.faq-item {
    padding: 22px;
}

.faq-item a {
    color: var(--blue);
    font-weight: 900;
}

.launch-panel {
    background:
        linear-gradient(rgba(25, 25, 23, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 25, 23, 0.065) 1px, transparent 1px),
        var(--paper);
    background-size: 42px 42px, 42px 42px, auto;
}

.launch-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
}

footer {
    background: var(--ink);
    color: white;
    padding: 42px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
}

.footer-logo {
    color: white;
}

.footer-grid p {
    max-width: 440px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 12px;
}

.footer-links {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1180px;
    margin: 30px auto 0;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    text-align: center;
}

.support-page,
.legal-page {
    padding-top: 132px;
}

.support-page h1,
.legal-page h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.4rem;
    line-height: 1.05;
    margin-bottom: 18px;
}

.support-page > .container > p,
.legal-page > .container > p:first-of-type,
.updated {
    max-width: 780px;
    color: var(--muted);
    font-size: 1.1rem;
    font-weight: 650;
}

.support-grid {
    margin: 36px 0 48px;
}

.support-card {
    padding: 24px;
}

.support-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    background: var(--paper);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    font-weight: 900;
}

.support-card a,
.legal-page a {
    color: var(--blue);
    font-weight: 900;
}

.legal-page .container {
    max-width: 880px;
}

.legal-page h2,
.support-page .faq h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    margin: 34px 0 10px;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 14px;
}

.legal-page ul {
    padding-left: 22px;
}

.support-page .faq {
    background: transparent;
}

.support-page .faq-item {
    margin-top: 14px;
}

@keyframes drift-main {
    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(10px) rotate(4deg);
    }
}

@keyframes drift-side {
    0%,
    100% {
        transform: translateY(0) rotate(-7deg);
    }
    50% {
        transform: translateY(-12px) rotate(-8deg);
    }
}

@keyframes drift-watch {
    0%,
    100% {
        transform: translateY(0) rotate(-4deg);
    }
    50% {
        transform: translateY(8px) rotate(-2deg);
    }
}

@media (max-width: 1080px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.55rem;
    }

    .hero {
        background:
            linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.34) 58%, rgba(255, 255, 255, 0.08)),
            linear-gradient(rgba(25, 25, 23, 0.055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(25, 25, 23, 0.055) 1px, transparent 1px),
            var(--paper);
        background-size: auto, 44px 44px, 44px 44px, auto;
    }

    .hero-phone-main {
        right: 18px;
        width: 286px;
        opacity: 0.72;
    }

    .hero-phone-side,
    .receipt-strip {
        opacity: 0.45;
    }

    .hero-watch {
        opacity: 0.65;
    }

    .section-grid,
    .product-grid,
    .privacy-grid,
    .platform-layout {
        grid-template-columns: 1fr;
    }

    .product-grid {
        gap: 24px;
    }

    .feature-list {
        order: -1;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

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

    .cred-grid div:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .use-case-grid,
    .pricing-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        gap: 14px;
    }

    .phone-stack {
        min-height: 560px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        min-height: 88svh;
        padding: 96px 0 28px;
    }

    .hero-content {
        padding-top: 0;
    }

    h1 {
        font-size: 3.08rem;
    }

    h2 {
        font-size: 2.16rem;
    }

    .hero-copy {
        font-size: 1.12rem;
    }

    .hero-actions {
        margin-top: 24px;
    }

    .hero-stats {
        display: none;
    }

    .hero-phone-main {
        right: -48px;
        top: 130px;
        width: 230px;
        opacity: 0.22;
    }

    .hero-phone-side,
    .hero-watch,
    .receipt-strip {
        display: none;
    }

    section:not(.hero):not(.cred-strip) {
        padding: 68px 0;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .timeline span {
        grid-row: auto;
    }

    .phone-stack {
        min-height: 470px;
    }

    .shot-front {
        left: 0;
        width: 210px;
    }

    .shot-back {
        right: 0;
        width: 220px;
    }

    .watch-shot {
        right: 42px;
        width: 150px;
    }

    .platform-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .launch-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .support-page h1,
    .legal-page h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 560px) {
    .nav-inner {
        min-height: 60px;
        gap: 10px;
    }

    .logo {
        gap: 8px;
        font-size: 0.9rem;
    }

    .logo img {
        width: 32px;
        height: 32px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 88px;
    }

    h1 {
        font-size: 2.72rem;
    }

    h2 {
        font-size: 1.95rem;
    }

    .button {
        width: 100%;
    }

    .cred-grid {
        grid-template-columns: 1fr;
    }

    .cred-grid div,
    .cred-grid div:last-child,
    .cred-grid div:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, 0.14);
    }

    .phone-stack {
        min-height: 400px;
    }

    .shot-front {
        width: 180px;
    }

    .shot-back {
        width: 188px;
    }

    .watch-shot {
        right: 20px;
        bottom: 18px;
        width: 124px;
    }

    .price {
        font-size: 2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}
