/* ============================================
   Alchemy — Craft Cocktails at Home
   Website Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
    --green-deep: #142E1E;
    --green-dark: #0A1A0F;
    --green-mid: #1C3D28;
    --gold: #D9A659;
    --gold-light: #F2CC80;
    --gold-dim: #8A6D3B;
    --white: #F5F5F5;
    --white-soft: #E0E0E0;
    --gray: #9A9A9A;
    --gray-dark: #2A2A2A;
    --bg: #0C0C0C;
    --bg-card: #161616;
    --bg-card-hover: #1E1E1E;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(12, 12, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(217, 166, 89, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    background: var(--gold);
    color: var(--green-dark) !important;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: opacity var(--transition) !important;
}

.nav-cta:hover {
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid rgba(217, 166, 89, 0.1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 1.1rem;
    color: var(--white-soft);
    padding: 8px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform var(--transition), box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--white);
    color: var(--bg);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.apple-icon {
    width: 20px;
    height: 20px;
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 120px 24px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
}

.hero-glow-1 {
    width: 900px;
    height: 900px;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(20, 46, 30, 0.9) 0%, rgba(20, 46, 30, 0.3) 40%, transparent 65%);
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: -10%;
    background: radial-gradient(circle, rgba(217, 166, 89, 0.06) 0%, transparent 60%);
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: -10%;
    background: radial-gradient(circle, rgba(217, 166, 89, 0.06) 0%, transparent 60%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.4;
}

/* Centered text block */
.hero-center {
    position: relative;
    text-align: center;
    max-width: 700px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(217, 166, 89, 0.12);
    border: 1px solid rgba(217, 166, 89, 0.25);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Pills */
.hero-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 0.82rem;
    color: var(--white-soft);
    font-weight: 500;
}

.hero-pill svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/* Ghost button */
.btn-ghost {
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(217, 166, 89, 0.3);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 500;
    transition: background var(--transition), border-color var(--transition);
}

.btn-ghost:hover {
    background: rgba(217, 166, 89, 0.08);
    border-color: rgba(217, 166, 89, 0.5);
}

/* Device stage: floating up from below the text */
.hero-stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 420px;
    margin-top: 60px;
    z-index: 1;
}

.hero-stage-glow {
    position: absolute;
    width: 100%;
    height: 300px;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(217, 166, 89, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* iPad: wide backdrop device */
.hero-ipad-back {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 620px;
    background: #1A1A1A;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.06);
    z-index: 1;
    opacity: 0.7;
}

.hero-ipad-back img {
    border-radius: 10px;
    width: 100%;
    display: block;
}

/* iPhone: hero device, overlapping iPad, centered */
.hero-iphone-front {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 2;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.1),
                0 0 100px rgba(217, 166, 89, 0.1);
}

/* iPhone Frame */
.iphone-frame {
    position: relative;
    width: 280px;
    background: #1A1A1A;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08),
                0 0 60px rgba(217, 166, 89, 0.06);
    z-index: 1;
}

.iphone-frame img {
    border-radius: 30px;
    width: 100%;
}

/* Hero Entrance Animations */
.hero-animate {
    opacity: 0;
    transform: translateY(40px);
    animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-delay-2 {
    opacity: 0;
    transform: translateY(60px);
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Features --- */
.features {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 140px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 12px;
}

.feature-text h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.feature-text p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--white-soft);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.feature-device {
    flex-shrink: 0;
}

.feature-device .iphone-frame {
    width: 260px;
}

/* Stacked device view for My Bar */
.feature-device-stack {
    position: relative;
    width: 300px;
    height: 540px;
}

.feature-device-stack .frame-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    opacity: 0.5;
    transform: rotate(-4deg);
}

.feature-device-stack .frame-front {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 240px;
    z-index: 1;
}

/* --- iPad Section --- */
.ipad-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 46, 30, 0.15) 50%, transparent 100%);
}

.ipad-showcase {
    margin: 60px auto;
    max-width: 900px;
}

.ipad-frame {
    position: relative;
    background: #1A1A1A;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ipad-frame img {
    border-radius: 12px;
    width: 100%;
}

.ipad-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ipad-feature-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color var(--transition);
}

.ipad-feature-card:hover {
    border-color: rgba(217, 166, 89, 0.2);
}

.ipad-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ipad-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.ipad-feature-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.ipad-feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* --- Sync Section --- */
.sync-section {
    padding: 100px 0;
}

.sync-content {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.sync-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 166, 89, 0.1);
    border-radius: 16px;
}

.sync-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.sync-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.sync-content p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* --- Pricing Section --- */
.pricing-section {
    padding: 120px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 48px 36px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-card-pro {
    border-color: rgba(217, 166, 89, 0.3);
    background: linear-gradient(180deg, rgba(217, 166, 89, 0.06) 0%, var(--bg-card) 40%);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-tier {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.pricing-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.pricing-card-pro .pricing-price {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 4px 8px;
    display: inline-block;
    overflow: visible;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 32px;
}

.pricing-price-coming-soon {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(3rem * 1.2 + 4px + 0.9rem * 1.6);
}

.pricing-features {
    list-style: none;
    width: 100%;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-features li {
    position: relative;
    padding: 8px 0 8px 28px;
    color: var(--white-soft);
    font-size: 0.92rem;
    text-align: left;
    line-height: 1.5;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dim);
}

.pricing-card-pro .pricing-features li::before {
    background: var(--gold);
}

.pricing-features li:first-child {
    font-weight: 600;
    color: var(--gold);
    padding-left: 0;
}

.pricing-features li:first-child::before {
    display: none;
}

.pricing-card:not(.pricing-card-pro) .pricing-features li:first-child {
    display: none;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* --- Download Section --- */
.download-section {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 46, 30, 0.2) 100%);
}

.download-content {
    text-align: center;
}

.download-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    margin: 0 auto 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.download-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.download-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* --- Notify Form --- */
.notify-form {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.notify-input-wrap {
    display: flex;
    gap: 0;
    border-radius: 100px;
    border: 1px solid rgba(217, 166, 89, 0.3);
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
    transition: border-color var(--transition);
}

.notify-input-wrap:focus-within {
    border-color: var(--gold);
}

.notify-input {
    flex: 1;
    min-width: 0;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.notify-input::placeholder {
    color: var(--gray);
}

.notify-btn {
    border-radius: 100px;
    margin: 4px;
    padding: 10px 24px;
    white-space: nowrap;
    flex-shrink: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.hero-actions .notify-form {
    max-width: 480px;
}

/* --- Footer --- */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white-soft);
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
    text-align: center;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-stage {
        height: 360px;
    }

    .hero-ipad-back {
        width: 520px;
    }

    .hero-iphone-front {
        width: 180px;
    }

    .feature-row {
        gap: 48px;
    }

    .iphone-frame {
        width: 240px;
    }

    .feature-device .iphone-frame {
        width: 220px;
    }

    .feature-device-stack {
        width: 260px;
        height: 480px;
    }

    .feature-device-stack .frame-back {
        width: 210px;
    }

    .feature-device-stack .frame-front {
        width: 210px;
    }
}

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 48px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stage {
        height: 320px;
        margin-top: 48px;
    }

    .hero-ipad-back {
        width: 400px;
    }

    .hero-iphone-front {
        width: 160px;
        bottom: -20px;
    }

    .iphone-frame {
        width: 240px;
    }

    .features {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
    }

    .feature-device {
        display: flex;
        justify-content: center;
    }

    .feature-device .iphone-frame {
        width: 220px;
    }

    .feature-device-stack {
        width: 260px;
        height: 460px;
    }

    .feature-device-stack .frame-back {
        width: 200px;
    }

    .feature-device-stack .frame-front {
        width: 200px;
        left: 40px;
    }

    .feature-list li {
        text-align: left;
    }

    .ipad-section {
        padding: 80px 0;
    }

    .ipad-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sync-section {
        padding: 60px 0;
    }

    .pricing-section {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .download-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-stage {
        height: 260px;
        margin-top: 40px;
    }

    .hero-ipad-back {
        width: 300px;
    }

    .hero-iphone-front {
        width: 130px;
        bottom: -15px;
    }

    .hero-pill {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .iphone-frame {
        width: 220px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .notify-input-wrap {
        flex-direction: column;
        border-radius: var(--radius);
        gap: 0;
    }

    .notify-input {
        padding: 14px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(217, 166, 89, 0.15);
    }

    .notify-btn {
        border-radius: var(--radius);
        margin: 8px;
        padding: 14px 24px;
    }

    .feature-device-stack {
        width: 240px;
        height: 420px;
    }

    .feature-device-stack .frame-back {
        width: 180px;
    }

    .feature-device-stack .frame-front {
        width: 180px;
        left: 40px;
    }
}
