@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ──────────── Reset ──────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ──────────── Variables ──────────── */
:root {
    --bg:           #0d1117;
    --bg-surface:   #131b24;
    --bg-elevated:  #1a2333;
    --border:       rgba(255, 255, 255, 0.07);
    --border-glow:  rgba(245, 166, 35, 0.35);
    --accent:       #f5a623;
    --accent-bright:#ffbe4f;
    --accent-hot:   #ff6b35;
    --text:         #eef0f5;
    --text-muted:   #7e8ea8;
    --text-faint:   #3a4455;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Space Grotesk', -apple-system, sans-serif;
    --max-w:        1200px;
    --section-pad:  6rem 2rem;
    --success:      #10b981;
    --error:        #ef4444;
}

/* ──────────── Base ──────────── */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ──────────── Grain Overlay ──────────── */
.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 300px 300px;
}

/* ──────────── Navigation ──────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(13, 17, 23, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img {
    height: 90px;
    width: auto;
    display: block;
    transition: opacity 0.2s;
}
.logo:hover img { opacity: 0.8; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--accent); }

.nav-cta {
    color: var(--accent) !important;
    border: 1px solid var(--border-glow);
    padding: 0.45rem 1.1rem;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.25rem;
}

.nav-socials a {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: color 0.2s;
}

.nav-socials a:hover { color: var(--accent); }

.nav-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 480px) {
    .nav-socials { margin-left: 0.5rem; gap: 0.5rem; }
    .nav-socials svg { width: 17px; height: 17px; }
}

/* ──────────── Hero ──────────── */
.hero {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 5rem 2rem 6rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 88vh;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--border-glow);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1.0;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 1.5rem;
    position: relative;
}

/* Glitch layers */
.hero-title::before,
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
}
.hero-title::before {
    color: var(--accent-hot);
    clip-path: polygon(0 15%, 100% 15%, 100% 42%, 0 42%);
    animation: glitch-top 9s infinite steps(1);
}
.hero-title::after {
    color: var(--accent);
    clip-path: polygon(0 58%, 100% 58%, 100% 85%, 0 85%);
    animation: glitch-bot 9s infinite steps(1);
}

@keyframes glitch-top {
    0%, 88%, 93%, 100% { opacity: 0; transform: none; }
    89% { opacity: 0.75; transform: translateX(-4px); }
    90% { opacity: 0; }
    91% { opacity: 0.5;  transform: translateX(3px); }
    92% { opacity: 0; }
}
@keyframes glitch-bot {
    0%, 88%, 93%, 100% { opacity: 0; transform: none; }
    89% { opacity: 0; }
    90% { opacity: 0.75; transform: translateX(4px); }
    91% { opacity: 0; }
    92% { opacity: 0.5;  transform: translateX(-2px); }
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 460px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.btn-download { display: inline-block; }
.btn-download img {
    height: 54px;
    width: auto;
    transition: opacity 0.2s, filter 0.2s;
}
.btn-download:hover img {
    opacity: 0.85;
    filter: brightness(1.1);
}
.btn-download.large img { height: 64px; }

.platform-note {
    font-size: 0.78rem;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Hero visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.phone-artifact {
    position: relative;
    width: 300px;
    aspect-ratio: 9 / 19.5;
    border-radius: 2.25rem;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(245, 166, 35, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.5s ease;
}
.phone-artifact:hover { transform: rotate(0deg); }

.phone-artifact img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: hero-cycle 28s infinite;
}
.phone-artifact img:nth-child(1) { animation-delay: 0s; }
.phone-artifact img:nth-child(2) { animation-delay: 4s; }
.phone-artifact img:nth-child(3) { animation-delay: 8s; }
.phone-artifact img:nth-child(4) { animation-delay: 12s; }
.phone-artifact img:nth-child(5) { animation-delay: 16s; }
.phone-artifact img:nth-child(6) { animation-delay: 20s; }
.phone-artifact img:nth-child(7) { animation-delay: 24s; }

@keyframes hero-cycle {
    0%, 12%  { opacity: 1; }
    16%, 100% { opacity: 0; }
}

/* ──────────── What Is Spot ──────────── */
.what-is-spot {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 2rem;
    text-align: center;
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.what-text {
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.85;
    font-weight: 400;
}
.what-text em {
    color: var(--text);
    font-style: italic;
}

/* ──────────── Screenshots ──────────── */
.screenshots {
    padding: var(--section-pad);
    overflow: visible;
}

.screenshots-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.screenshot-artifact {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.35s ease, box-shadow 0.35s ease, z-index 0s;
    z-index: 1;
}
.screenshot-artifact img { width: 100%; display: block; }

.artifact-label {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.55);
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.artifact-1 { transform: rotate(-2.5deg) translateY(10px);  border: 1px solid rgba(245,166,35,0.2); }
.artifact-2 { transform: rotate(1.8deg)  translateY(-6px);  border: 1px solid rgba(255,107,53,0.15); }
.artifact-3 { transform: rotate(-1.2deg) translateY(8px);   border: 1px solid rgba(245,166,35,0.2); }
.artifact-4 { transform: rotate(2.5deg)  translateY(-12px); border: 1px solid rgba(255,107,53,0.15); }

.screenshot-artifact:hover {
    transform: rotate(0deg) translateY(0) scale(1.04) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.2);
    z-index: 10;
}

/* ──────────── How It Works ──────────── */
.how-it-works {
    padding: var(--section-pad);
    border-top: 1px solid var(--border);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 3rem;
    line-height: 1.05;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}
.step:hover .step-number { opacity: 1; }

.step-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    padding-top: 0.8rem;
}
.step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
}

/* ──────────── Features ──────────── */
.features {
    padding: var(--section-pad);
    border-top: 1px solid var(--border);
}
.features .section-title { margin-bottom: 3rem; }

.features-list {
    display: flex;
    flex-direction: column;
}

.feature-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
    transition: opacity 0.2s;
}
.feature-row:last-child { border-bottom: none; }

.feature-num {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.25;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}
.feature-row:hover .feature-num { opacity: 1; }

.feature-row strong {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.55;
}

/* ──────────── For Organizations ──────────── */
.for-orgs {
    padding: var(--section-pad);
    border-top: 1px solid var(--border);
}

.for-orgs-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.75;
    margin-bottom: 5rem;
}

.org-steps {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-bottom: 5rem;
}

.org-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.org-step--reverse {
    direction: rtl;
}
.org-step--reverse > * {
    direction: ltr;
}

.org-step-phone {
    display: flex;
    justify-content: center;
    position: relative;
}
.org-step-phone::before {
    content: '';
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 50%;
    filter: blur(20px);
}

.org-step-phone img {
    width: 275px !important;
    height: auto !important;
    max-width: unset;
    border-radius: 2rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(245, 166, 35, 0.12);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.org-step-phone img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(245, 166, 35, 0.2),
        0 32px 80px rgba(0, 0, 0, 0.65),
        0 0 60px rgba(245, 166, 35, 0.2);
}

.org-step-phone--map img {
    width: 300px !important;
    height: auto !important;
    border-radius: 1.75rem;
}

.org-step-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.org-step-number {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.25;
    letter-spacing: 0.02em;
    transition: opacity 0.3s;
}
.org-step:hover .org-step-number { opacity: 1; }

.org-step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}

.org-step-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 420px;
}
.org-step-content p strong {
    color: var(--text);
    font-weight: 600;
}

.org-cta-box {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(255, 107, 53, 0.07));
    border: 1px solid var(--border-glow);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.org-cta-box p {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 768px) {
    .org-step,
    .org-step--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
        text-align: center;
    }
    .org-step--reverse > * { direction: ltr; }
    .org-step-phone { order: -1; }
    .org-step-content { align-items: center; }
    .org-step-content p { max-width: 100%; }
    .org-step-phone img { width: 225px; }
    .org-step-phone--map img { width: 250px; }
    .org-steps { gap: 4rem; }
    .for-orgs-intro { margin-bottom: 3.5rem; }
}

/* ──────────── Final CTA ──────────── */
.final-cta {
    padding: var(--section-pad);
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 350px;
    background: radial-gradient(ellipse, rgba(245,166,35,0.14) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 8rem);
    line-height: 1.02;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 2.5rem;
    position: relative;
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-faint);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-top: 1rem;
}

/* ──────────── Footer ──────────── */
footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--text-faint);
}

.footer-copy { font-size: 0.8rem; color: var(--text-faint); }

.footer-links { display: flex; gap: 0.75rem; align-items: center; }
.footer-links a {
    font-size: 0.8rem;
    color: var(--text-faint);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }
.footer-links span { color: var(--text-faint); }

/* ──────────── SEO Landing Pages ──────────── */
.seo-screenshot-pair {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.seo-screenshot-pair img {
    width: 240px;
    border-radius: 2rem;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(245, 166, 35, 0.12);
    display: block;
    transition: transform 0.4s ease;
}
.seo-screenshot-pair img:hover {
    transform: translateY(-6px) scale(1.02);
}

@media (max-width: 600px) {
    .seo-screenshot-pair img { width: 180px; }
}

/* ──────────── Legal Pages ──────────── */
.legal-page {
    max-width: 860px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
}

.legal-page h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.legal-page section { margin-bottom: 2rem; }

.legal-page h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
.legal-page p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.legal-page li { margin-bottom: 0.5rem; }
.legal-page a { color: var(--accent); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

/* ──────────── About Page ──────────── */
.about-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 2rem 5rem;
}

.about-hero {
    text-align: center;
    padding: 4.5rem 0 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3.5rem;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 400;
}

.about-section { margin-bottom: 4rem; }

.about-section h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.problem-statement {
    max-width: 640px;
}
.problem-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.problem-lines {
    border-left: 2px solid var(--border);
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.problem-lines p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.mission-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-glow);
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
}
.mission-box p {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.mission-box p:last-child { margin-bottom: 0; }

.components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.component {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.component:hover { border-color: var(--border-glow); transform: translateY(-3px); }
.component-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.component h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.component p  { font-size: 0.875rem; color: var(--text-muted); }

.component-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.pitch-section { text-align: center; }

.pitch-box {
    background: linear-gradient(135deg, rgba(245,166,35,0.1), rgba(255,107,53,0.07));
    border: 1px solid var(--border-glow);
    border-radius: 0.75rem;
    padding: 3rem 2rem;
}
.pitch-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
    font-weight: 500;
}

/* ──────────── Privacy Section ──────────── */
.privacy-intro {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 620px;
}

.privacy-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border);
}

.privacy-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    align-items: start;
}

.privacy-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    padding-top: 0.1rem;
}

.privacy-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 600px) {
    .privacy-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.cta-section {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.cta-button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: background 0.2s, transform 0.2s;
}
.cta-button:hover { background: var(--accent-bright); transform: translateY(-2px); }

/* ──────────── Get App Page ──────────── */
.get-app-page {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.get-app-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Carousel (used on get-the-app) */
.carousel-container {
    position: relative;
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 2rem;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 30px 80px rgba(0,0,0,0.65),
        0 0 50px rgba(245,166,35,0.12);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
}

.carousel-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.carousel-image.active { opacity: 1; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 1.25rem;
    padding: 0.875rem 0.65rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s;
}
.dot.active { background: var(--accent); }

.get-app-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.get-app-cta h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.03em;
    color: var(--text);
    line-height: 1.1;
}

.get-app-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
}

.get-app-note { font-size: 0.8rem; color: var(--text-faint); }
.get-app-note a { color: var(--accent); text-decoration: none; }
.get-app-note a:hover { text-decoration: underline; }

.app-store-badge { height: 54px; width: auto; }

/* ──────────── Reset Password / Forms ──────────── */
.signup-section {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 3rem auto;
    max-width: 540px;
}
.signup-section h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    letter-spacing: 0.03em;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.signup-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.email-form { display: flex; gap: 1rem; margin-bottom: 1rem; }

.email-form input {
    flex: 1;
    padding: 0.875rem 1rem;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    color: var(--text);
    font-family: var(--font-body);
    transition: border-color 0.2s;
}
.email-form input:focus { outline: none; border-color: var(--border-glow); }
.email-form input::placeholder { color: var(--text-faint); }

.email-form button {
    padding: 0.875rem 2rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
.email-form button:hover { background: var(--accent-bright); }
.email-form button:disabled { background: var(--text-faint); cursor: not-allowed; }

.message {
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}
.message.hidden { display: none; }
.message.success {
    background: rgba(16,185,129,0.1);
    color: #6ee7b7;
    border: 1px solid rgba(16,185,129,0.3);
}
.message.error {
    background: rgba(239,68,68,0.1);
    color: #fca5a5;
    border: 1px solid rgba(239,68,68,0.3);
}

/* ──────────── Responsive ──────────── */
@media (max-width: 1024px) {
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
    .artifact-1, .artifact-2, .artifact-3, .artifact-4 { transform: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 4rem 1.5rem; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 1.5rem 4rem;
        text-align: center;
        gap: 3rem;
    }
    .hero-sub    { margin: 0 auto 2.5rem; }
    .hero-actions { align-items: center; }
    .hero-visual { order: 1; }
    .phone-artifact { width: 220px; transform: none !important; }

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

    .step { grid-template-columns: 80px 1fr; gap: 1.25rem; }
    .step-number { font-size: 3.5rem; }

.get-app-layout   { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .get-app-cta      { align-items: center; }

    nav { padding: 1rem 1.5rem; }
    .logo img { height: 64px; }
    .footer-inner { flex-direction: column; text-align: center; }
    .about-page { padding: 0 1.5rem 4rem; }
    .legal-page { margin: 2rem 1rem; }
}

@media (max-width: 480px) {
    .screenshots-grid { grid-template-columns: 1fr 1fr; }
    .email-form { flex-direction: column; }
    .email-form button { width: 100%; }

    nav {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }
    .logo img { height: 52px; }
    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .nav-links a { font-size: 0.78rem; }
    .nav-cta { padding: 0.35rem 0.75rem; }
}
