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

:root {
    --gutter: max(28px, calc((100vw - 1100px) / 2));
    color-scheme: light;
}

img, svg { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: #f3f4f6;
    color: #1a1d3a;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

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

h1, h2, h3 { margin: 0; }

.page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Header + Hero shared background */
.header-hero {
    background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 25%, #ede9fe 60%, #e0e7ff 100%);
}

/* Header */
.site-header {
    padding: 18px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-logo { display: inline-flex; }

.site-nav {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 500;
    align-items: center;
}

.site-nav a {
    color: #6b7280;
    position: relative;
    padding: 4px 0;
    transition: color 0.15s ease;
}

.site-nav a:hover { color: #1a1d3a; }

.site-nav a.active { color: #1a1d3a; }

.site-nav .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 14px;
    border-left: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #9ca3af;
}

.site-nav .lang-switch a {
    color: #9ca3af;
    text-decoration: none;
    padding: 0;
}

.site-nav .lang-switch a:hover { color: #1a1d3a; }
.site-nav .lang-switch a.active { color: #1a1d3a; }
.site-nav .lang-switch a.active::after { display: none; }

.site-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f06292;
    border-radius: 2px;
}

/* Cards / sections */
.card-section {
    background: white;
    padding: 56px var(--gutter);
    color: #1a1d3a;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 14px;
}

.eyebrow .dash {
    width: 18px;
    height: 2px;
    border-radius: 1px;
}

.serif { font-family: Georgia, 'Times New Roman', serif; }

.gradient-text {
    background: linear-gradient(90deg, #f06292, #9c5fb5, #4f6cf7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Hero */
.hero {
    background: transparent;
    overflow: hidden;
    color: #1a1d3a;
    position: relative;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 600px;
    pointer-events: none;
    opacity: 0.5;
}

.hero-grid {
    padding: 48px var(--gutter) 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.025em;
    margin: 0 0 22px;
}

.hero p.lead {
    font-size: 15px;
    line-height: 1.55;
    color: #4b5563;
    margin: 0;
    max-width: 420px;
}

.hero p.lead strong { font-weight: 700; }

.hero-cards { position: relative; height: 360px; }

.hero-card {
    position: absolute;
    width: 140px;
    background: white;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 20px 40px -10px rgba(80, 30, 100, 0.25);
}

.hero-card-1 { top: 30px; left: 30px; transform: rotate(-6deg); z-index: 2; }
.hero-card-2 { top: 80px; right: 20px; transform: rotate(8deg); z-index: 1; }
.hero-card-3 { bottom: 30px; left: 50%; transform: translateX(-50%) rotate(-2deg); width: 150px; z-index: 3; box-shadow: 0 20px 40px -10px rgba(80, 30, 100, 0.3); }

.hero-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tag {
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: 0.1em;
}

.tag-pink { background: linear-gradient(135deg, #f06292, #ec4c8a); }
.tag-indigo { background: linear-gradient(135deg, #6366f1, #4f6cf7); }
.tag-amber { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.tag-meta { font-size: 9px; color: #9ca3af; }

.hero-card-body {
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card-body.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.hero-card-body.indigo { background: linear-gradient(135deg, #ede9fe, #ddd6fe); padding: 10px; display: block; }
.hero-card-body.amber { background: linear-gradient(135deg, #fef3c7, #fde68a); }

.dot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}
.dot-grid > div { width: 16px; height: 16px; }
.dot-grid .sq { border-radius: 4px; }
.dot-grid .ci { border-radius: 50%; }
.bg-pink { background: #f06292; }
.bg-amber { background: #fbbf24; }
.bg-indigo { background: #6366f1; }

.bars {
    display: flex;
    gap: 2px;
    align-items: flex-end;
    margin-top: 8px;
    height: 28px;
}
.bars > div { width: 5px; border-radius: 1px; }

.proof-bar {
    background: rgba(255,255,255,0.6);
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.avatar-stack { display: inline-flex; }
.avatar-stack span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid white;
}
.avatar-stack span + span { margin-left: -8px; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    text-align: center;
}

.about-grid > div {
    max-width: 720px;
}

.about-grid .link-cards {
    justify-content: center;
}

.founder-card {
    aspect-ratio: 1;
    max-width: 360px;
    background: linear-gradient(135deg, #f06292, #9c5fb5, #4f6cf7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.founder-card .ring {
    position: absolute;
    inset: 14px;
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 18px;
}

.founder-card .initial {
    font-family: Georgia, serif;
    font-size: 100px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.05em;
}

.founder-card .badges {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.founder-card .badge-soft {
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.12em;
}

.founder-card .badge-solid {
    background: white;
    color: #1a1d3a;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.12em;
}

.about-grid h2 {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 14px;
}

.about-grid p {
    font-size: 14px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 20px;
}

.link-cards { display: flex; gap: 10px; flex-wrap: wrap; }

.link-card {
    flex: 1;
    min-width: 200px;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.link-card:hover { border-color: #c7d2fe; transform: translateY(-1px); }

.link-card .icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.link-card .icon.pink { background: linear-gradient(135deg, #f06292, #ec4c8a); }
.link-card .icon.indigo { background: linear-gradient(135deg, #6366f1, #4f6cf7); font-size: 12px; }

.link-card .meta { flex: 1; min-width: 0; }

.link-card .meta .label {
    font-size: 9px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.link-card .meta .value {
    font-size: 12px;
    font-weight: 700;
    color: #1a1d3a;
    margin-top: 1px;
}

.link-card .arrow { color: #9ca3af; font-size: 14px; }

/* Lineup */
.lineup-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.lineup-head h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.pill-toggle {
    display: flex;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 100px;
    gap: 4px;
}

.pill-toggle span {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.pill-toggle span.active {
    background: white;
    color: #1a1d3a;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.pill-toggle .dot { width: 10px; height: 10px; padding: 0; border-radius: 50%; flex-shrink: 0; display: inline-block; box-sizing: border-box; }

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.product-card {
    background: linear-gradient(180deg, #fdf2f8, white);
    border: 1.5px solid #fce7f3;
    border-radius: 16px;
    padding: 18px;
}

.product-thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-thumb.pink { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.product-thumb.pink-dark { background: linear-gradient(135deg, #fbcfe8, #f9a8d4); }

.product-code {
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    color: #be185d;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 100px;
}

.product-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.product-status .dot { width: 5px; height: 5px; border-radius: 50%; }
.product-status .label { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; }

.product-title { font-size: 14px; font-weight: 700; color: #1a1d3a; }
.product-sub { font-size: 11px; color: #6b7280; margin-top: 2px; }

.product-card.placeholder {
    background: white;
    border: 2px dashed #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-card.placeholder .plus {
    width: 48px;
    height: 48px;
    background: rgba(240, 98, 146, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 24px;
    color: #f06292;
    font-weight: 800;
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #1a1d3a 0%, #2d1b69 50%, #1a1d3a 100%);
    padding: 40px var(--gutter);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.4;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 28px;
    align-items: center;
}

.contact-grid h2 {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    color: white;
}

.contact-grid p {
    font-size: 13px;
    line-height: 1.6;
    color: #c4b5fd;
    margin: 0 0 18px;
    max-width: 380px;
}

.cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.btn {
    font-size: 12px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary { background: white; color: #1a1d3a; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(255,255,255,0.4); }

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover { background: rgba(255,255,255,0.15); }

.topics {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px;
}

.topics-title {
    font-size: 10px;
    color: #c4b5fd;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.topic-list { display: flex; flex-direction: column; gap: 6px; }

.topic-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    font-size: 12px;
    transition: background 0.15s ease;
}

.topic-list a:hover { background: rgba(255,255,255,0.12); }

.topic-list a span:last-child { color: #c4b5fd; }

/* Footer */
.site-footer {
    background: #0f1024;
    padding: 36px var(--gutter) 20px;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f06292, #9c5fb5, #4f6cf7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #1f2138;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 13px;
    max-width: 420px;
    margin: 14px 0 0;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.footer-heading {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #f06292;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    padding: 3px 0;
    transition: color 0.15s ease;
}

.footer-links a:hover { color: #e2e8f0; }

.footer-copy {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #64748b;
}

/* Privacy / generic content */
.prose { max-width: 760px; }

.prose h1 {
    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.prose h2 {
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    margin: 28px 0 10px;
}

.prose p, .prose li {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.prose ul { padding-left: 20px; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; margin: 8px 0 8px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4b5563;
}

.form-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #9ca3af;
}

.form-row input,
.form-row textarea {
    font-family: inherit;
    font-size: 14px;
    color: #1a1d3a;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 11px 14px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
}

.form-row textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #9c5fb5;
    box-shadow: 0 0 0 3px rgba(156, 95, 181, 0.18);
}

.form-row input.input-validation-error,
.form-row textarea.input-validation-error {
    border-color: #f06292;
    box-shadow: 0 0 0 3px rgba(240, 98, 146, 0.15);
}

.form-error {
    color: #db2777;
    font-size: 12px;
    font-weight: 600;
    min-height: 1em;
}

.form-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-error-summary {
    color: #db2777;
    font-size: 13px;
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 10px;
    padding: 10px 14px;
}

.form-error-summary ul { margin: 0; padding-left: 18px; }
.form-error-summary:empty { display: none; }

.form-success {
    background: linear-gradient(90deg, rgba(240,98,146,0.12), rgba(99,102,241,0.12));
    border: 1px solid rgba(156, 95, 181, 0.35);
    color: #4b3a6b;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    margin: 0 0 12px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.btn-solid {
    background: linear-gradient(90deg, #f06292, #9c5fb5, #4f6cf7);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px rgba(156, 95, 181, 0.6);
}

.btn-link {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.btn-link:hover { color: #1a1d3a; }

/* Responsive */
@media (max-width: 820px) {
    .hero h1 { font-size: 38px; }
    .hero-grid,
    .about-grid,
    .contact-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cards { height: 320px; }
    .lineup-grid { grid-template-columns: 1fr 1fr; }
    .site-header { padding-top: 14px; padding-bottom: 14px; }
    .founder-card { margin: 0 auto; }
    .hero p.lead { max-width: none; }
    .contact-grid p { max-width: none; }
}

@media (max-width: 540px) {
    :root { --gutter: 20px; }
    .lineup-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .site-nav {
        gap: 6px 14px;
        font-size: 13px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }
    .site-nav a { padding: 8px 0; }
    .card-section { padding-top: 36px; padding-bottom: 36px; }
    .contact { padding-top: 32px; padding-bottom: 32px; }
    .hero-grid { padding-top: 32px; padding-bottom: 28px; }
    .hero h1 { font-size: 32px; }
    .about-grid h2,
    .contact-grid h2 { font-size: 26px; }
    .prose h1 { font-size: 28px; }
    .prose h2 { font-size: 19px; }
    .lineup-head h2 { font-size: 24px; }
    .hero-bg { width: 100%; height: 360px; opacity: 0.35; }
    .contact-bg { width: 100%; }
    .hero-cards { height: 300px; }
    .hero-card { width: 120px; padding: 12px; }
    .hero-card-1 { left: 8px; }
    .hero-card-2 { right: 8px; }
    .hero-card-3 { width: 130px; }
    .footer-tagline { max-width: none; }
}

@media (max-width: 380px) {
    :root { --gutter: 16px; }
    .hero h1 { font-size: 28px; }
    .about-grid h2,
    .contact-grid h2 { font-size: 22px; }
    .prose h1 { font-size: 24px; }
    .hero-card { width: 108px; }
    .hero-card-3 { width: 118px; }
    .hero-cards { height: 280px; }
    .cta-row .btn { width: 100%; text-align: center; }
    .form-actions .btn-solid { width: 100%; }
}

/* Prevent iOS auto-zoom on focused inputs (requires >= 16px) */
@media (max-width: 540px) {
    .form-row input,
    .form-row textarea { font-size: 16px; }
}
