:root {
    --bg: #ffffff;
    --bg-soft: #fbf7f1;
    --bg-muted: #f6f1e8;
    --border: #ece4d5;
    --text: #1a1410;
    --text-soft: #5a4e42;
    --text-muted: #8a7f72;
    --amber: #b8722c;
    --amber-dark: #8f5720;
    --gold: #e0a836;
    --shadow-sm: 0 1px 2px rgba(26, 20, 16, 0.04), 0 2px 6px rgba(26, 20, 16, 0.05);
    --shadow-md: 0 4px 12px rgba(26, 20, 16, 0.06), 0 12px 32px rgba(26, 20, 16, 0.08);
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 28px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: "Fraunces", "Playfair Display", Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(40px, 6vw, 64px);
    letter-spacing: -0.025em;
}

h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    margin-bottom: 12px;
}

h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

p {
    margin: 0 0 16px;
    color: var(--text-soft);
}

a {
    color: var(--amber);
    text-decoration: none;
}

a:hover {
    color: var(--amber-dark);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
    font-size: 17px;
}

.brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: 15px;
}

.nav-links a {
    color: var(--text-soft);
    font-weight: 500;
}

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-secondary:hover {
    background: var(--bg-soft);
    color: var(--text);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: 72px 0 96px;
    overflow: hidden;
    background:
        radial-gradient(1200px 500px at 85% -10%, rgba(224, 168, 54, 0.18), transparent 60%),
        radial-gradient(800px 400px at 0% 0%, rgba(184, 114, 44, 0.10), transparent 60%),
        var(--bg);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--amber-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

.hero-eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(224, 168, 54, 0.2);
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--amber) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-sub {
    font-size: 19px;
    max-width: 540px;
    margin-bottom: 32px;
    color: var(--text-soft);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-meta {
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Phone mock */
.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone {
    position: relative;
    width: 280px;
    aspect-ratio: 9 / 19;
    background: #0d0d0f;
    border-radius: 42px;
    padding: 10px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.15),
        0 40px 80px -20px rgba(26, 20, 16, 0.35),
        inset 0 0 0 1.5px #2a2a2e;
    transform: rotate(-4deg);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbf7f1 0%, #fff 45%);
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #0d0d0f;
    border-radius: 14px;
    z-index: 2;
}

.phone-content {
    padding: 54px 18px 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mock-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 2px 10px;
}

.mock-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--gold));
}

.mock-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}

.mock-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.mock-bottle {
    width: 36px;
    height: 52px;
    border-radius: 6px 6px 4px 4px;
    background: linear-gradient(180deg, #2a1a10 0%, #6b3e1a 40%, #b8722c 100%);
    flex-shrink: 0;
    position: relative;
}

.mock-bottle::before {
    content: "";
    position: absolute;
    inset: 18px 4px 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
}

.mock-line {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-muted);
}

.mock-line.sm {
    height: 6px;
    width: 50%;
}

.mock-line.md {
    width: 80%;
}

.mock-stars {
    display: flex;
    gap: 2px;
    margin-top: 4px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 1px;
}

.mock-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mock-fab {
    position: absolute;
    bottom: 24px;
    right: 22px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--amber);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 300;
    box-shadow: 0 8px 20px rgba(184, 114, 44, 0.4);
}

@media (max-width: 860px) {
    .hero {
        padding: 48px 0 64px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .phone {
        transform: rotate(-3deg) scale(0.9);
    }
}

/* ---------- Sections ---------- */
.section {
    padding: 96px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-header {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    color: var(--amber);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
}

/* ---------- Features ---------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-muted), var(--bg-soft));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.feature p {
    font-size: 15px;
    margin: 0;
}

@media (max-width: 860px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Split sections ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split.reverse .split-text {
    order: 2;
}

.split h2 {
    margin-bottom: 16px;
}

.split-visual {
    background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-muted) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.split-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.split-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-soft);
    font-size: 16px;
}

.split-list .check {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

@media (max-width: 860px) {
    .split {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .split.reverse .split-text {
        order: 0;
    }
    .split-visual {
        min-height: 240px;
        padding: 32px;
    }
}

/* Scan visualization */
.scan-visual {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-bottle {
    width: 90px;
    height: 180px;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(180deg, #1f120a 0%, #5c3418 45%, #a5672a 100%);
    position: relative;
    box-shadow: 0 20px 40px rgba(31, 18, 10, 0.3);
}

.scan-bottle::before {
    content: "";
    position: absolute;
    inset: 50px 10px 30px;
    background: #fbf7f1;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.scan-bottle::after {
    content: "LABEL";
    position: absolute;
    left: 0;
    right: 0;
    top: 95px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--amber-dark);
    letter-spacing: 2px;
}

.scan-line {
    position: absolute;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amber), transparent);
    box-shadow: 0 0 20px rgba(184, 114, 44, 0.6);
    animation: scan 2.8s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { top: 20%; }
    50% { top: 80%; }
}

.scan-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid var(--amber);
}

.scan-corner.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; border-radius: 4px 0 0 0; }
.scan-corner.tr { top: 20px; right: 20px; border-left: none; border-bottom: none; border-radius: 0 4px 0 0; }
.scan-corner.bl { bottom: 20px; left: 20px; border-right: none; border-top: none; border-radius: 0 0 0 4px; }
.scan-corner.br { bottom: 20px; right: 20px; border-left: none; border-top: none; border-radius: 0 0 4px 0; }

/* Live tasting visual */
.live-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 320px;
}

.live-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e63946;
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(230, 57, 70, 0.05); }
}

.live-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

.live-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.live-avatars {
    display: flex;
    margin-left: auto;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.avatar:nth-child(2) { background: linear-gradient(135deg, #6b3e1a, #b8722c); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #4a342a, #8a7f72); }

.rating-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.rating-card .stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.rating-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.rating-score {
    font-family: "Fraunces", Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--amber);
}

/* ---------- Pro ---------- */
.pro-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 920px;
    margin: 0 auto;
}

.plan {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
}

.plan.pro {
    background: linear-gradient(180deg, #1a1410 0%, #2a1e14 100%);
    color: #fff;
    border: none;
    box-shadow: 0 20px 50px rgba(26, 20, 16, 0.25);
}

.plan.pro h3,
.plan.pro p,
.plan.pro .plan-price {
    color: #fff;
}

.plan.pro p,
.plan.pro .plan-list li {
    color: rgba(255, 255, 255, 0.75);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.plan h3 {
    font-size: 26px;
    margin-bottom: 6px;
}

.plan-price {
    font-family: "Fraunces", Georgia, serif;
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-soft);
}

.plan-list li::before {
    content: "✓";
    color: var(--amber);
    font-weight: 700;
    flex-shrink: 0;
}

.plan.pro .plan-list li::before {
    color: var(--gold);
}

@media (max-width: 720px) {
    .pro-wrap {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA ---------- */
.cta {
    padding: 96px 24px;
    text-align: center;
    background:
        radial-gradient(800px 300px at 50% 100%, rgba(224, 168, 54, 0.15), transparent 60%),
        linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.cta h2 {
    max-width: 640px;
    margin: 0 auto 16px;
}

.cta p {
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--text);
    color: #fff;
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    transition: transform 0.15s ease, background 0.2s ease;
}

.store-btn .store-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d97706;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cta-note {
    max-width: 540px;
    margin: 20px auto 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    text-align: center;
}

.cta-note a {
    color: inherit;
    text-decoration: underline;
}

.store-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.store-btn svg {
    flex-shrink: 0;
}

.store-btn .store-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.store-btn .store-small {
    font-size: 10px;
    opacity: 0.75;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.store-btn .store-big {
    font-size: 16px;
    font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 48px 0 32px;
    border-top: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 12px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col a {
    color: var(--text-soft);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-bottom small {
    font-size: 13px;
}
