/* DropItDown landing — colours pulled from the app icon. */
:root {
    --bg: #0f1620;
    --bg-elev: #131c29;
    --bg-card: #1b2330;
    --line: rgba(255, 255, 255, 0.08);
    --text: #e7ecf3;
    --text-mute: #97a4b7;
    --text-soft: #6b7993;
    --accent: #2fd595;
    --accent-bright: #5cf0b6;
    --accent-deep: #12a877;
    --shadow-soft: 0 6px 24px rgba(0, 0, 0, 0.35);
    --shadow-glow: 0 0 80px rgba(76, 240, 180, 0.25);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-size: 16px;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
code {
    font-family: ui-monospace, "SF Mono", Menlo, monospace;
    font-size: 0.92em;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.1em 0.4em;
    border-radius: 4px;
    color: var(--accent-bright);
}

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}
.container-narrow { width: min(680px, 92vw); }

/* ===== Navigation ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(15, 22, 32, 0.7);
    border-bottom: 1px solid var(--line);
}
.nav-inner {
    width: min(1180px, 92vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.05rem;
}
.nav-links {
    margin-left: auto;
    display: flex;
    gap: 28px;
    font-size: 0.95rem;
    color: var(--text-mute);
}
.nav-links a {
    transition: color 0.18s;
}
.nav-links a:hover { color: var(--text); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    transition: transform 0.15s, box-shadow 0.18s, background 0.18s;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn-sm { padding: 8px 16px; font-size: 0.92rem; border-radius: 9px; }
.btn-large { padding: 16px 32px; font-size: 1.08rem; border-radius: 14px; }
.btn-primary {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
    color: #06281c;
    box-shadow: 0 4px 16px rgba(47, 213, 149, 0.25);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(47, 213, 149, 0.4);
}
.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 700px;
    background: radial-gradient(closest-side, rgba(47, 213, 149, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-inner { max-width: 580px; }
.eyebrow {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(47, 213, 149, 0.12);
    color: var(--accent-bright);
    border-radius: 999px;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}
h1 {
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
}
.accent {
    background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.lead {
    font-size: 1.2rem;
    color: var(--text-mute);
    margin: 0 0 32px;
    max-width: 540px;
}
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.hero-meta {
    color: var(--text-soft);
    font-size: 0.92rem;
    margin: 0;
}

/* Hero illustration — a slim retelling of the icon */
.hero-art {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    width: 380px;
    aspect-ratio: 1;
    background: linear-gradient(160deg, #1b2330 0%, #0f1620 100%);
    border-radius: 32px;
    box-shadow: var(--shadow-soft), var(--shadow-glow);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
}
.hero-card-body {
    position: absolute;
    inset: 0;
    padding: 36px 60px;
    display: grid;
    grid-template-rows: 1fr 1.4fr 1fr;
    gap: 18px;
    align-items: center;
    justify-items: center;
}
.paper {
    width: 100px;
    height: 84px;
    background: linear-gradient(180deg, #ffffff, #e3e9f2);
    border-radius: 12px;
    transform: rotate(-12deg);
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 14px;
}
.paper-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: #c4cfde;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    border-top-right-radius: 12px;
}
.paper-line {
    height: 4px;
    background: #aab6cc;
    border-radius: 2px;
    margin-bottom: 6px;
}
.paper-line.short { width: 60%; }
.funnel {
    width: 150px;
    height: 110px;
    align-self: end;
}
.result-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.result-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.check {
    width: 14px;
    height: 14px;
    background: var(--accent-bright);
    color: #0f1620;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
}
.check.dim { background: rgba(92, 240, 182, 0.5); }
.result-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    flex: 1;
}
.result-bar.w1 { max-width: 80%; }
.result-bar.w2 { max-width: 60%; }
.result-bar.w3 { max-width: 70%; opacity: 0.6; }

/* ===== Generic section ===== */
.section {
    padding: 100px 0;
    position: relative;
}
.section-alt {
    background: var(--bg-elev);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.section h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
    font-weight: 700;
}
.section-lead {
    color: var(--text-mute);
    font-size: 1.1rem;
    margin: 0 0 48px;
}

/* ===== How it works ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.step {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 18px;
    position: relative;
}
.step-num {
    width: 38px;
    height: 38px;
    background: rgba(47, 213, 149, 0.15);
    color: var(--accent-bright);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 20px;
}
.step h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
    font-weight: 600;
}
.step p {
    color: var(--text-mute);
    margin: 0;
    line-height: 1.55;
}

/* ===== Features ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.feature {
    padding: 28px;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 16px;
    border: 1px solid var(--line);
    transition: border-color 0.18s, transform 0.18s;
}
.feature:hover {
    border-color: rgba(92, 240, 182, 0.3);
    transform: translateY(-2px);
}
.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 14px;
    line-height: 1;
}
.feature h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    font-weight: 600;
}
.feature p {
    color: var(--text-mute);
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.55;
}

/* ===== Screenshot ===== */
.screenshot-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}
.screenshot-frame {
    max-width: 1040px;
    width: 100%;
    background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border-radius: 24px;
    border: 1px solid var(--line);
    padding: 14px;
    box-shadow: var(--shadow-soft);
}
.screenshot-frame img {
    border-radius: 14px;
    width: 100%;
    height: auto;
}

/* ===== Pricing ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 48px;
}
.plan {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    border-radius: 22px;
    position: relative;
}
.plan-featured {
    border-color: rgba(92, 240, 182, 0.35);
    background:
        linear-gradient(180deg, rgba(47, 213, 149, 0.08), transparent),
        var(--bg-card);
}
.plan-tag {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(47, 213, 149, 0.12);
    color: var(--accent-bright);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.plan h3 {
    font-size: 1.6rem;
    margin: 0 0 6px;
    font-weight: 700;
}
.plan-price {
    font-size: 1.15rem;
    color: var(--text);
    margin: 0 0 22px;
    font-weight: 600;
}
.plan-price span {
    font-weight: 400;
    color: var(--text-soft);
    font-size: 0.92rem;
}
.plan-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.plan-list li {
    padding: 11px 0 11px 26px;
    border-top: 1px solid var(--line);
    color: var(--text-mute);
    font-size: 0.96rem;
    position: relative;
}
.plan-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 17px;
    width: 14px;
    height: 14px;
    background: rgba(47, 213, 149, 0.15);
    border-radius: 4px;
}
.plan-list li::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 14px;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent-bright);
}
.plan-list li:last-child { border-bottom: 1px solid var(--line); }

/* ===== Final CTA ===== */
.section-cta {
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(47, 213, 149, 0.04) 100%);
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0 18px;
    flex-wrap: wrap;
}
.fine-print {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin: 0;
}
.fine-print a {
    color: var(--accent-bright);
    border-bottom: 1px solid rgba(92, 240, 182, 0.3);
}

/* ===== Footer ===== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 22px;
}
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}
.footer-links {
    display: flex;
    gap: 26px;
    color: var(--text-mute);
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--text); }
.copyright {
    color: var(--text-soft);
    font-size: 0.88rem;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
    .hero { padding: 60px 0 80px; }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-art { order: -1; }
    .hero-card { width: 280px; }
    .nav-links { display: none; }
    .steps, .feature-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    .section { padding: 70px 0; }
}

@media (max-width: 540px) {
    h1 { font-size: 2.2rem; }
    .lead { font-size: 1.05rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}
