:root {
    --ion-color-primary: #ecba2f;
    --ion-color-primary-contrast: #ffffff;
    --ion-color-primary-shade: #e0a300;
    --ion-color-primary-tint: #f5d469;
    --bg: #0f1115;
    --surface: #1b1d24;
    --surface-light: #242731;
    --text-dark: #f4f4f7;
    --text-muted: #adb0bb;
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
    --radius: 20px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: radial-gradient(circle at top, #161821, #0c0d11 60%);
    color: var(--text-dark);
    font-family: inherit;
    line-height: 1.6;
    min-height: 100vh;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: rgba(15, 17, 21, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.site-header a:hover {
    transform: scale(1.05);
}

.site-header img {
    width: 140px;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.site-header a:hover img {
    opacity: 1;
}

.brand-text {
    color: var(--ion-color-primary);
}

.fade-in {
    animation: fadeIn 1.2s ease both;
}

.fade-up {
    animation: fadeUp 1s ease both;
}

.stagger .card {
    animation: fadeUp 0.8s ease both;
}

.stagger .card:nth-child(2) {
    animation-delay: 0.1s;
}

.stagger .card:nth-child(3) {
    animation-delay: 0.2s;
}

.stagger .card:nth-child(4) {
    animation-delay: 0.3s;
}

.float {
    animation: float 6s ease-in-out infinite;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

header {
    position: sticky;
    top: 0;
    background: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 10;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--ion-color-primary);
    letter-spacing: 0.08em;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-muted);
}

.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

main {
    padding-top: 100px;
    min-height: calc(100vh - 200px);
}

body:has(.contact-hero) main {
    padding-top: 70px;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 4rem 1.5rem;
}

.section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-copy {
    max-width: 520px;
}

.hero-logo {
    width: 160px;
    height: auto;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.hero-lede {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(236, 186, 47, 0.12);
}

.logo-pill img {
    width: 120px;
    height: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(236, 186, 47, 0.15);
    color: var(--ion-color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.2rem);
    margin: 0 0 1rem;
}

.hero p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--ion-color-primary-tint);
    font-weight: 500;
}

.feature-bullets li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ion-color-primary);
    display: inline-block;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--ion-color-primary);
    color: #0f1115;
    border: none;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(236, 186, 47, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.btn-primary:focus,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(236, 186, 47, 0.4);
    background: var(--ion-color-primary-tint);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
}

.play-badge {
    display: inline-block;
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-badge img {
    height: 60px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

.play-badge:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-store-badge {
    display: inline-block;
   
    width: auto;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-store-badge img {
 
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

.app-store-badge.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.app-store-badge.disabled img {
    filter: grayscale(100%);
}

.coming-soon-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--surface);
    transition: all 0.3s ease;
}

.store-btn:hover:not(.disabled) {
    border-color: rgba(236, 186, 47, 0.4);
    background: var(--surface-light);
    transform: translateY(-2px);
}

.store-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.device-stack {
    position: relative;
    width: min(400px, 90%);
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.device {
    width: 280px;
    border-radius: 40px;
    padding: 0.8rem;
    background: linear-gradient(145deg, rgba(236, 186, 47, 0.2), rgba(12, 13, 17, 0.95));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(236, 186, 47, 0.1);
    border: 1px solid rgba(236, 186, 47, 0.2);
    transform: rotate(-6deg);
    transition: transform 0.3s ease;
}

.device:hover {
    transform: rotate(-4deg) scale(1.02);
}

.device img {
    width: 100%;
    display: block;
    border-radius: 32px;
}

.device-small {
    position: absolute;
    width: 200px;
    bottom: -30px;
    right: -50px;
    transform: rotate(8deg);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.device-stack:hover .device-small {
    transform: rotate(10deg) scale(1.05);
    opacity: 1;
}

.section h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
    color: var(--ion-color-primary-contrast);
}

.section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card svg {
    width: 28px;
    height: 28px;
    color: var(--ion-color-primary);
    margin-bottom: 0.8rem;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 186, 47, 0.4);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

body:has(.contact-hero) footer {
    padding: 1rem 1.5rem;
}

footer a {
    color: var(--ion-color-primary-tint);
    font-weight: 500;
}

.guided-steps {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin: 0 0 0.8rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 0;
}

.guided-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.guided-list li {
    background: var(--surface);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guided-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--ion-color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guided-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(236, 186, 47, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}

.guided-list li:hover::before {
    opacity: 1;
}

.guided-list h3 {
    margin: 0 0 0.8rem;
    color: var(--ion-color-primary);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.guided-list p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.gallery {
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    background: var(--surface);
    border-radius: 28px;
    padding: 1.2rem;
    margin: 0;
    box-shadow: var(--shadow-soft);
}

.gallery-card img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.8rem;
}

.simple-grid article:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 186, 47, 0.45);
}

.gallery-card figcaption {
    color: var(--text-muted);
    font-weight: 600;
}

.cta-banner {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(236, 186, 47, 0.12), rgba(236, 186, 47, 0.05));
    border-radius: 32px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(236, 186, 47, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 186, 47, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-banner > div {
    position: relative;
    z-index: 1;
}

.cta-banner h3 {
    margin: 0 0 0.8rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cta-banner .btn-primary {
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Contact page */
.contact-hero {
    text-align: center;
    padding: 1rem 1.5rem 0.75rem;
    max-width: 600px;
    margin: 0 auto;
}


.contact-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 1rem auto 2rem;
    background: var(--surface);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form > div {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface-light);
    font: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

input:hover,
textarea:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--ion-color-primary);
    box-shadow: 0 0 0 3px rgba(236, 186, 47, 0.2);
    background: var(--surface);
}

textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
    line-height: 1.5;
}

.error-text {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: none;
    font-weight: 500;
}

.error-text.visible {
    display: block;
    animation: fadeUp 0.3s ease;
}

.status-message {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    display: none;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    animation: fadeUp 0.4s ease;
}

.status-success {
    background: rgba(236, 186, 47, 0.2);
    color: var(--ion-color-primary-contrast);
    border: 1px solid rgba(236, 186, 47, 0.3);
}

.status-error {
    background: rgba(255, 71, 71, 0.15);
    color: #ff9d9d;
    border: 1px solid rgba(255, 71, 71, 0.3);
}

.contact-wrapper form .btn-primary {
    margin-top: 0.25rem;
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
}

/* Delete account page specific styles */
body:has([data-delete-account-form]) .contact-hero h1 {
    color: #ff6b6b;
}

.phone-input-group {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
}

.country-code-wrapper,
.phone-number-wrapper {
    display: flex;
    flex-direction: column;
}

.country-code-wrapper select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--surface-light);
    font: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-code-wrapper select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.country-code-wrapper select:focus {
    outline: none;
    border-color: var(--ion-color-primary);
    box-shadow: 0 0 0 3px rgba(236, 186, 47, 0.2);
    background: var(--surface);
}

.otp-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.otp-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.otp-actions .btn-primary {
    width: 100%;
    margin-top: 0;
}

/* Join connection / deep link page */
.deeplink-page main {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    margin-top: 80px;
}

.deeplink-card {
    max-width: 540px;
    width: 100%;
    background: rgba(26, 29, 36, 0.85);
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.deeplink-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem auto;
    border-radius: 18px;
    background: rgba(236, 186, 47, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.deeplink-subtitle {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.deeplink-status {
    padding: 1rem 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.deeplink-status[data-variant="warning"] {
    background: rgba(236, 186, 47, 0.12);
    color: var(--ion-color-primary);
}

.deeplink-status[data-variant="error"] {
    background: rgba(255, 99, 132, 0.12);
    color: var(--error);
}

.deeplink-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.deeplink-actions .btn-primary,
.deeplink-actions .btn-secondary {
    width: 100%;
}

@media (max-width: 600px) {
    .deeplink-card {
        padding: 2rem;
    }
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-dark);
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#otp {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-weight: 600;
    padding: 1rem;
}

#otp::placeholder {
    letter-spacing: 0.3rem;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(-6deg);
    }
    50% {
        transform: translateY(-12px) rotate(-4deg);
    }
    100% {
        transform: translateY(0) rotate(-6deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    /* Main padding adjustment */
    main {
        padding-top: 80px;
    }

    /* Header */
    .site-header {
        padding: 1rem;
    }

    .site-header img {
        width: 100px;
    }

    /* Hero Section */
    .hero-section {
        min-height: auto;
        padding: 2rem 1rem;
        padding-top: 6rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }

    .hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-lede {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* Device Stack */
    .device-stack {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .device {
        width: 220px;
    }

    .device-small {
        width: 150px;
        bottom: -20px;
        right: -30px;
    }

    /* Store Buttons */
    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .play-badge,
    .app-store-badge {
        height: 50px;
    }

    .play-badge img,
    .app-store-badge img {
        height: 50px;
        max-width: 150px;
    }

    .coming-soon-text {
        font-size: 0.65rem;
        bottom: -18px;
    }

    /* CTA Row */
    .cta-row {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    /* Sections */
    .section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Guided List */
    .guided-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guided-list li {
        padding: 1.5rem;
    }

    .guided-list h3 {
        font-size: 1rem;
    }

    .guided-list p {
        font-size: 0.9rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .cta-banner h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    /* Footer */
    footer {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        font-size: 0.85rem;
    }

    /* Navigation (if exists) */
    .nav-links {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        background: var(--surface);
        padding: 1rem 1.5rem;
        border-radius: 16px;
        flex-direction: column;
        gap: 0.75rem;
        box-shadow: var(--shadow-soft);
        display: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .hero-section {
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-lede {
        font-size: 1rem;
    }

    .device {
        width: 180px;
    }

    .device-small {
        width: 120px;
        bottom: -15px;
        right: -20px;
    }

    .play-badge,
    .app-store-badge {
        height: 45px;
    }

    .play-badge img,
    .app-store-badge img {
        height: 45px;
        max-width: 135px;
    }

    .section {
        padding: 2rem 1rem;
    }

    .cta-banner {
        padding: 1.5rem 1rem;
    }

    .guided-list li {
        padding: 1.25rem;
    }

    /* Phone input group mobile */
    .phone-input-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

