/* =====================================================================
   TASWIRA — SHARED STYLESHEET
   =====================================================================
   One place for the design system used across every Taswira surface:
   marketing pages, the page builder, the admin panel, login, and the
   card editor. Link this file instead of repeating <style> blocks.

   <link rel="stylesheet" href="taswira.css">

   Requires Google Fonts (Playfair Display + Montserrat) — add this to
   the <head> of any page that uses this file:

   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,900;1,500;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">

   CONTENTS
   -------------------------------------------------------------------
   1. Design tokens (:root)
   2. Reset & base
   3. Type & eyebrow labels
   4. Buttons & links
   5. Nav / header
   6. Hero + floating invite card
   7. Scroll reveal utility
   8. Marquee band
   9. Section shell + journey (sequential feature rows)
   10. Component mockups (builder / card / chat / STK)
   11. Pattern divider
   12. Showcase / palette / type specimen
   13. Quote section
   14. Final CTA band
   15. Footer
   16. Responsive

   NOTE: this file was extracted from the public landing page. It
   covers every token, component, and pattern used there. Page-specific
   screens (admin panel, page builder, card editor, login) were each
   built as separate self-contained files in earlier sessions and
   aren't in this working directory — paste their <style> blocks in
   below, reusing the tokens and components already defined here,
   rather than redefining colors/type/buttons from scratch.
   ===================================================================== */

:root{
    --navy:#0D1B2A;
    --navy-2:#122A40;
    --navy-3:#1B3A57;
    --gold:#C9A96E;
    --gold-light:#E7D2A6;
    --blush:#E8B4B8;
    --ivory:#FAF7F2;
    --ivory-dim:rgba(250,247,242,0.66);
    --ivory-faint:rgba(250,247,242,0.38);
    --line:rgba(201,169,110,0.22);
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
    background:var(--navy);
    color:var(--ivory);
    font-family:'Montserrat', sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.serif{ font-family:'Playfair Display', serif; }
a{ color:inherit; text-decoration:none; }
img{max-width:100%; display:block;}
.wrap{ max-width:1180px; margin:0 auto; padding:0 32px; }
::selection{ background:var(--gold); color:var(--navy); }

@media (prefers-reduced-motion: reduce){
    *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-size:11.5px; letter-spacing:0.22em; text-transform:uppercase;
    color:var(--gold-light); font-weight:600;
}
.eyebrow::before{
    content:""; width:22px; height:1px; background:var(--gold);
}

/* ---------- Nav ---------- */
header{
    position:fixed; top:0; left:0; right:0; z-index:100;
    background:rgba(13,27,42,0.72);
    backdrop-filter:blur(14px);
    border-bottom:1px solid transparent;
    transition:border-color .4s ease, background .4s ease;
}
header.scrolled{ border-color:var(--line); background:rgba(13,27,42,0.92); }
nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:20px 32px; max-width:1180px; margin:0 auto;
}
.logo{
    font-family:'Playfair Display', serif; font-weight:700; font-size:22px;
    letter-spacing:0.02em; color:var(--ivory);
    display:flex; align-items:baseline; gap:8px;
}
.logo .dot{ color:var(--gold); font-size:26px; line-height:0; }
.nav-links{ display:flex; align-items:center; gap:38px; }
.nav-links a:not(.btn){
    font-size:13px; letter-spacing:0.03em; color:var(--ivory-dim);
    font-weight:500; position:relative; padding:4px 0; transition:color .25s;
}
.nav-links a:not(.btn):hover{ color:var(--ivory); }
.nav-links a:not(.btn)::after{
    content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
    background:var(--gold); transition:width .3s ease;
}
.nav-links a:not(.btn):hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:22px; }

.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:13px 26px; font-size:12.5px; font-weight:600;
    letter-spacing:0.06em; text-transform:uppercase;
    border-radius:2px; cursor:pointer; border:1px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn-gold{
    background:linear-gradient(135deg, var(--gold-light), var(--gold));
    color:var(--navy);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 28px -8px rgba(201,169,110,0.55); }
.btn-ghost{
    border-color:rgba(250,247,242,0.28); color:var(--ivory);
    background:transparent;
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-light); }

.mobile-toggle{ display:none; }

/* ---------- Hero ---------- */
.hero{
    position:relative; min-height:100vh;
    display:flex; align-items:center;
    padding-top:120px; padding-bottom:80px;
    overflow:hidden;
}
#constellation{
    position:absolute; inset:0; width:100%; height:100%; z-index:0;
}
.hero::after{
    content:""; position:absolute; inset:0;
    background:radial-gradient(ellipse 80% 60% at 50% 30%, rgba(13,27,42,0) 0%, var(--navy) 78%);
    z-index:1; pointer-events:none;
}
.hero-inner{
    position:relative; z-index:2; width:100%;
    display:grid; grid-template-columns:1.05fr 0.85fr; gap:60px; align-items:center;
}
.hero-copy{ max-width:560px; }
.hero-copy .eyebrow{ margin-bottom:22px; }
.hero-copy h1{
    font-size:clamp(38px, 5vw, 60px); line-height:1.06; font-weight:700;
    letter-spacing:-0.01em; color:var(--ivory); margin-bottom:24px;
}
.hero-copy h1 em{ font-style:italic; color:var(--gold-light); font-weight:600; }
.hero-copy p{
    font-size:16.5px; line-height:1.75; color:var(--ivory-dim);
    max-width:480px; margin-bottom:36px; font-weight:300;
}
.hero-actions{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }
.link-inline{
    font-size:13px; font-weight:600; letter-spacing:0.03em; color:var(--ivory);
    display:inline-flex; align-items:center; gap:8px; padding-bottom:2px;
    border-bottom:1px solid rgba(250,247,242,0.3);
    transition:border-color .25s, color .25s;
}
.link-inline:hover{ color:var(--gold-light); border-color:var(--gold-light); }

.hero-events{
    margin-top:52px; padding-top:26px; border-top:1px solid var(--line);
    display:flex; gap:28px; flex-wrap:wrap;
}
.hero-events span{
    font-size:11.5px; letter-spacing:0.1em; text-transform:uppercase;
    color:var(--ivory-faint); font-weight:600;
}

/* Hero visual — floating invitation card */
.hero-visual{ position:relative; height:520px; display:flex; align-items:center; justify-content:center; }
.card-stage{ perspective:1400px; }
.invite-card{
    width:300px; height:410px; border-radius:6px;
    background:linear-gradient(160deg, #12283e 0%, #0D1B2A 100%);
    border:1px solid var(--line);
    box-shadow:0 40px 90px -25px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,169,110,0.06);
    transform:rotateY(-16deg) rotateX(6deg);
    animation:floatCard 7s ease-in-out infinite;
    position:relative; overflow:hidden;
    padding:34px 30px;
    display:flex; flex-direction:column; justify-content:space-between;
}
.invite-card::before{
    content:""; position:absolute; inset:0;
    background:
            linear-gradient(115deg, transparent 40%, rgba(201,169,110,0.14) 50%, transparent 60%);
    background-size:220% 220%;
    animation:sheen 5s ease-in-out infinite;
}
@keyframes sheen{
    0%,100%{ background-position:-40% -40%; }
    50%{ background-position:140% 140%; }
}
@keyframes floatCard{
    0%,100%{ transform:rotateY(-16deg) rotateX(6deg) translateY(0px); }
    50%{ transform:rotateY(-11deg) rotateX(3deg) translateY(-16px); }
}
.invite-card .ic-eyebrow{
    font-size:9.5px; letter-spacing:0.24em; text-transform:uppercase; color:var(--gold-light); font-weight:600;
}
.invite-card h3{
    font-size:29px; color:var(--ivory); line-height:1.25; margin-top:14px; font-weight:600; font-style:italic;
}
.invite-card .ic-rule{ width:36px; height:1px; background:var(--gold); margin:18px 0; }
.invite-card .ic-meta{ font-size:11.5px; color:var(--ivory-faint); line-height:1.9; font-weight:400; }
.invite-card .ic-qr{
    align-self:flex-end; width:58px; height:58px; border-radius:4px;
    background:
            repeating-linear-gradient(90deg, var(--gold) 0 3px, transparent 3px 6px),
            repeating-linear-gradient(0deg, var(--gold) 0 3px, transparent 3px 6px);
    background-blend-mode:multiply;
    background-color:var(--ivory); opacity:0.9;
}
.badge-float{
    position:absolute; padding:12px 18px; background:rgba(20,42,64,0.85);
    backdrop-filter:blur(10px); border:1px solid var(--line); border-radius:4px;
    font-size:11.5px; font-weight:600; letter-spacing:0.02em; color:var(--ivory);
    display:flex; align-items:center; gap:10px; box-shadow:0 20px 40px -15px rgba(0,0,0,0.5);
}
.badge-1{ top:8%; left:-6%; animation:driftA 6s ease-in-out infinite; }
.badge-2{ bottom:10%; right:-8%; animation:driftB 6.5s ease-in-out infinite; }
.badge-dot{ width:7px; height:7px; border-radius:50%; background:var(--blush); flex-shrink:0; }
.badge-dot.gold{ background:var(--gold); }
@keyframes driftA{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }
@keyframes driftB{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(12px);} }

/* ---------- Scroll fade utility ---------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- Marquee (event types) ---------- */
.marquee-band{
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:22px 0; overflow:hidden; background:var(--navy-2);
    position:relative; z-index:2;
}
.marquee-track{
    display:flex; gap:60px; white-space:nowrap; width:max-content;
    animation:scrollLeft 32s linear infinite;
}
@keyframes scrollLeft{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }
.marquee-track span{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:500;
    font-size:19px; color:var(--ivory-faint); display:inline-flex; align-items:center; gap:60px;
}
.marquee-track span::after{ content:"✦"; font-style:normal; color:var(--gold); font-size:13px; }

/* ---------- Section shell ---------- */
section{ position:relative; z-index:2; }
.section-pad{ padding:130px 0; }
.section-head{ max-width:640px; margin-bottom:80px; }
.section-head h2{
    font-size:clamp(30px,3.6vw,44px); font-weight:600; line-height:1.18; margin-top:18px; color:var(--ivory);
}
.section-head p{ margin-top:18px; color:var(--ivory-dim); font-size:15.5px; line-height:1.75; font-weight:300; max-width:520px; }

/* ---------- Journey (four pillars, sequential) ---------- */
.journey{ display:flex; flex-direction:column; }
.journey-row{
    display:grid; grid-template-columns:340px 1fr; gap:70px;
    padding:64px 0; border-top:1px solid var(--line); align-items:center;
}
.journey-row:last-child{ border-bottom:1px solid var(--line); }
.journey-num{
    font-family:'Playfair Display', serif; font-style:italic; font-weight:600;
    font-size:15px; color:var(--gold); margin-bottom:20px; display:block;
}
.journey-text h3{ font-size:26px; font-weight:600; color:var(--ivory); margin-bottom:14px; line-height:1.25; }
.journey-text p{ font-size:14.5px; line-height:1.75; color:var(--ivory-dim); font-weight:300; max-width:320px; }
.journey-row:nth-child(even) .journey-visual{ order:2; }
.journey-row:nth-child(even) .journey-text{ order:1; }

/* mockups */
.mockup{
    border-radius:8px; border:1px solid var(--line); background:var(--navy-2);
    overflow:hidden; box-shadow:0 40px 70px -35px rgba(0,0,0,0.6);
}
.mockup-bar{
    display:flex; align-items:center; gap:6px; padding:12px 16px; background:rgba(0,0,0,0.18);
    border-bottom:1px solid var(--line);
}
.mockup-bar i{ width:8px; height:8px; border-radius:50%; background:rgba(250,247,242,0.18); display:block; }

/* 01 website builder mockup */
.builder-mock{ padding:0; }
.builder-mock .canvas{ display:grid; grid-template-columns:64px 1fr; min-height:260px; }
.builder-mock .rail{ background:rgba(0,0,0,0.2); border-right:1px solid var(--line); display:flex; flex-direction:column; align-items:center; gap:16px; padding:18px 0; }
.builder-mock .rail i{ width:20px; height:20px; border-radius:4px; background:rgba(250,247,242,0.12); display:block; }
.builder-mock .rail i.active{ background:var(--gold); }
.builder-mock .canvas-body{ padding:26px; display:flex; flex-direction:column; gap:14px; }
.builder-mock .block{ border-radius:4px; background:rgba(250,247,242,0.05); border:1px dashed rgba(201,169,110,0.35); padding:16px; }
.builder-mock .block.hero{ height:70px; background:linear-gradient(120deg, rgba(201,169,110,0.16), rgba(232,180,184,0.1)); border-style:solid; }
.builder-mock .block.small{ height:26px; width:60%; }

/* 02 card editor mockup */
.card-mock .canvas-body{ padding:30px; display:flex; justify-content:center; }
.mini-card{
    width:180px; height:250px; border-radius:5px; background:linear-gradient(160deg,#12283e,#0D1B2A);
    border:1px solid var(--line); padding:22px 18px; display:flex; flex-direction:column; justify-content:space-between;
}
.mini-card .mc-title{ font-family:'Playfair Display',serif; font-style:italic; font-size:17px; color:var(--ivory); }
.mini-card .mc-line{ height:1px; width:26px; background:var(--gold); margin:10px 0; }
.mini-card .mc-sub{ font-size:9px; color:var(--ivory-faint); line-height:1.8; }
.mini-card .mc-qr{ align-self:flex-end; width:34px; height:34px; border-radius:3px;
    background:repeating-linear-gradient(90deg, var(--gold) 0 2px, transparent 2px 4px), repeating-linear-gradient(0deg, var(--gold) 0 2px, transparent 2px 4px);
    background-blend-mode:multiply; background-color:var(--ivory); }
.swatch-row{ display:flex; gap:8px; justify-content:center; padding:0 0 24px; }
.swatch{ width:16px; height:16px; border-radius:50%; border:1px solid rgba(250,247,242,0.3); }

/* 03 whatsapp mockup */
.chat-mock .canvas-body{ padding:26px; display:flex; flex-direction:column; gap:10px; background:
        radial-gradient(circle at 20% 20%, rgba(201,169,110,0.05), transparent 40%); min-height:220px; }
.bubble{
    max-width:78%; padding:12px 16px; border-radius:12px; font-size:12.5px; line-height:1.6;
    background:rgba(250,247,242,0.06); color:var(--ivory-dim); align-self:flex-start; border:1px solid var(--line);
}
.bubble.me{ align-self:flex-end; background:linear-gradient(135deg, rgba(201,169,110,0.28), rgba(201,169,110,0.12)); color:var(--ivory); }
.bubble.tap{ align-self:flex-start; display:flex; align-items:center; gap:10px; font-weight:600; color:var(--gold-light); }
.bubble.tap .pulse-dot{ width:8px; height:8px; border-radius:50%; background:var(--blush); animation:pulse 1.6s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 0 rgba(232,180,184,0.5);} 50%{ box-shadow:0 0 0 8px rgba(232,180,184,0);} }

/* 04 contribution mockup */
.stk-mock .canvas-body{ padding:30px; display:flex; justify-content:center; align-items:center; min-height:220px; }
.phone{ width:160px; height:250px; border-radius:20px; border:2px solid rgba(250,247,242,0.14); background:#0a1622; padding:16px 12px; position:relative; }
.phone .notch{ width:40px; height:5px; border-radius:3px; background:rgba(250,247,242,0.15); margin:0 auto 14px; }
.stk-prompt{ background:rgba(250,247,242,0.06); border:1px solid var(--line); border-radius:8px; padding:14px; text-align:center; }
.stk-prompt .amt{ font-family:'Playfair Display',serif; font-style:italic; font-size:20px; color:var(--gold-light); margin:8px 0; }
.stk-prompt .lab{ font-size:9px; color:var(--ivory-faint); letter-spacing:0.06em; text-transform:uppercase; }
.stk-btn{ margin-top:12px; background:var(--gold); color:var(--navy); font-size:10px; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; padding:8px; border-radius:4px; text-align:center; }
.stk-check{ margin:14px auto 0; width:26px; height:26px; border-radius:50%; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; color:var(--gold); font-size:13px; animation:appear 3s ease-in-out infinite; }
@keyframes appear{ 0%,60%{ opacity:0; transform:scale(0.6);} 75%,100%{ opacity:1; transform:scale(1);} }

/* ---------- Pattern divider ---------- */
.pattern-divider{ height:64px; width:100%; position:relative; overflow:hidden; z-index:2; }
.pattern-divider svg{ width:100%; height:100%; }

/* ---------- Showcase / Palette section ---------- */
.showcase{ background:var(--navy-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.showcase-grid{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.palette-strip{ display:flex; border-radius:8px; overflow:hidden; height:120px; margin-top:36px; box-shadow:0 30px 60px -30px rgba(0,0,0,0.6); }
.palette-strip div{ flex:1; display:flex; align-items:flex-end; padding:10px; font-size:9.5px; font-weight:600; letter-spacing:0.03em; }
.p-navy{ background:#0D1B2A; color:var(--ivory-faint); }
.p-gold{ background:#C9A96E; color:#0D1B2A; }
.p-blush{ background:#E8B4B8; color:#0D1B2A; }
.p-ivory{ background:#FAF7F2; color:#0D1B2A; }
.type-sample{ margin-top:44px; }
.type-sample .ts-a{ font-family:'Playfair Display',serif; font-weight:700; font-style:italic; font-size:34px; color:var(--ivory); }
.type-sample .ts-b{ font-family:'Montserrat',sans-serif; font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold-light); margin-top:10px; font-weight:600; }
.showcase-copy p{ color:var(--ivory-dim); font-size:15px; line-height:1.8; margin-top:18px; font-weight:300; max-width:440px; }

/* ---------- Quote ---------- */
.quote-section{ text-align:center; padding:150px 0; }
.quote-section blockquote{
    font-family:'Playfair Display',serif; font-style:italic; font-weight:500;
    font-size:clamp(24px,3.2vw,36px); line-height:1.5; color:var(--ivory);
    max-width:760px; margin:0 auto;
}
.quote-section blockquote span{ color:var(--gold-light); }
.quote-attr{ margin-top:28px; font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color:var(--ivory-faint); font-weight:600; }

/* ---------- Final CTA ---------- */
.cta-band{
    background:radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201,169,110,0.14), transparent 60%), var(--navy-2);
    border-top:1px solid var(--line); text-align:center; padding:140px 0;
}
.cta-band h2{ font-size:clamp(32px,4.5vw,52px); font-weight:600; color:var(--ivory); max-width:640px; margin:0 auto 30px; line-height:1.2; }
.cta-band .btn{ margin:0 8px; }

/* ---------- Footer ---------- */
footer{ padding:70px 0 40px; border-top:1px solid var(--line); }
.footer-top{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:50px; padding-bottom:56px; }
.footer-brand .logo{ margin-bottom:16px; }
.footer-brand p{ color:var(--ivory-faint); font-size:13px; max-width:260px; line-height:1.8; font-weight:300; }
.footer-cols{ display:flex; gap:70px; flex-wrap:wrap; }
.footer-col h4{ font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-light); font-weight:600; margin-bottom:18px; }
.footer-col a{ display:block; font-size:13.5px; color:var(--ivory-dim); margin-bottom:12px; transition:color .2s; }
.footer-col a:hover{ color:var(--ivory); }
.footer-bottom{ display:flex; justify-content:space-between; padding-top:30px; border-top:1px solid var(--line); font-size:11.5px; color:var(--ivory-faint); flex-wrap:wrap; gap:12px; }

/* ---------- Responsive ---------- */
@media (max-width:920px){
    .hero-inner{ grid-template-columns:1fr; }
    .hero-visual{ height:400px; order:-1; }
    .journey-row{ grid-template-columns:1fr; gap:34px; }
    .journey-row:nth-child(even) .journey-visual, .journey-row:nth-child(even) .journey-text{ order:0; }
    .showcase-grid{ grid-template-columns:1fr; }
    .nav-links{ display:none; }
    .footer-top{ flex-direction:column; }
}
@media (max-width:560px){
    .wrap{ padding:0 20px; }
    .hero-copy p{ font-size:15px; }
    .section-pad{ padding:90px 0; }
    .invite-card{ width:250px; height:340px; padding:26px 22px; }
}