/* ===== arefinazam.com — design tokens ===== */
:root{
  --ink:#211a36; --plum:#2e1065; --violet:#6d28d9; --iris:#8b5cf6;
  --lavender:#ede9fe; --cream:#faf9f7; --mist:#f1efeb; --line:#e7e4dd; --sub:#5f5971;
  --magenta:#d946ef; --amber:#f59e0b; --night:#14101f;
  --orange:#f97316; --pink:#ec4899; --teal:#0d9488; --sun:#fbbf24;
  --peach:#ffedd5; --mint:#d7f5e3; --sky:#e0f2fe; --rose:#ffe4e6; --lemon:#fef5c3;
  --font-display:"Bricolage Grotesque",ui-sans-serif,system-ui,sans-serif;
  --font-body:"Inter",ui-sans-serif,system-ui,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--cream);color:var(--ink);font-family:var(--font-body);-webkit-font-smoothing:antialiased;line-height:1.5;display:flex;min-height:100vh;flex-direction:column}
main{flex:1}
h1,h2,h3,h4{font-family:var(--font-display);text-wrap:balance;line-height:1.15}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
::selection{background:var(--lavender);color:var(--plum)}
.container{max-width:72rem;margin:0 auto;padding-left:1.25rem;padding-right:1.25rem}
.narrow{max-width:48rem}
.mid{max-width:64rem}

/* ===== buttons & pills ===== */
.btn{display:inline-block;border-radius:9999px;padding:.875rem 1.75rem;font-size:15px;font-weight:600;transition:all .2s;cursor:pointer;border:0}
.btn-primary{background:linear-gradient(100deg,var(--orange),var(--pink));color:#fff;box-shadow:0 8px 24px -8px rgba(236,72,153,.5)}
.btn-primary:hover{filter:brightness(1.12);transform:translateY(-1px)}
.btn-white{background:#fff;color:var(--ink)}
.btn-white:hover{background:var(--lavender)}
.btn-dark{background:var(--ink);color:#fff}
.btn-dark:hover{background:#000}
.btn-outline{background:transparent;color:var(--ink);border:2px solid var(--ink);padding:.75rem 1.75rem}
.btn-outline:hover{background:var(--ink);color:#fff}
.btn-sm{padding:.5rem 1rem;font-size:13.5px}
.pill{display:inline-flex;align-items:center;gap:.5rem;border-radius:9999px;background:var(--lavender);padding:.375rem 1rem;font-size:14px;font-weight:500;color:var(--plum)}
.eyebrow{font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:var(--teal)}
.eyebrow.on-dark{color:var(--iris)}
.grad-text{background:linear-gradient(90deg,var(--orange),var(--pink) 50%,#8b5cf6);-webkit-background-clip:text;background-clip:text;color:transparent}

/* ===== header ===== */
header.site{position:sticky;top:0;z-index:50;border-bottom:1px solid rgba(231,228,221,.7);background:rgba(250,249,247,.85);backdrop-filter:blur(14px)}
header.site nav{display:flex;align-items:center;justify-content:space-between;padding:1rem 0}
.logo{font-family:var(--font-display);font-size:1.25rem;font-weight:700;letter-spacing:-.02em}
.logo span{color:var(--orange)}
.nav-links{display:none;align-items:center;gap:2rem}
.nav-links a.nav-item{font-size:15px;font-weight:500;color:var(--sub);transition:color .2s}
.nav-links a.nav-item:hover,.nav-links a.nav-item.active{color:var(--ink)}
#menu-btn{display:block;background:none;border:0;cursor:pointer;color:var(--ink)}
#mobile-menu{border-top:1px solid rgba(231,228,221,.7);padding:0 1.25rem 1.25rem;background:rgba(250,249,247,.97)}
#mobile-menu a{display:block;padding:.75rem 0;font-size:15px;font-weight:500;color:var(--sub)}
#mobile-menu a.btn{display:inline-block;color:#fff;margin-top:.5rem;padding:.625rem 1.25rem}
#mobile-menu.hidden{display:none}
@media(min-width:768px){.nav-links{display:flex}#menu-btn{display:none}#mobile-menu{display:none}}

/* ===== hero ===== */
.hero{position:relative;overflow:hidden;background:linear-gradient(170deg,#fdfcfa 0%,#faf7f2 60%,#f7f3ee 100%)}
.hero .glow1{position:absolute;top:-9rem;right:-5%;height:520px;width:520px;border-radius:50%;background:radial-gradient(circle,rgba(196,181,253,.85),transparent 66%);filter:blur(34px);pointer-events:none}
.hero .glow2{position:absolute;bottom:-28%;left:-8%;height:480px;width:480px;border-radius:50%;background:radial-gradient(circle,rgba(254,215,170,.95),transparent 66%);filter:blur(34px);pointer-events:none}
.hero .glow3{position:absolute;top:20%;left:38%;height:360px;width:360px;border-radius:50%;background:radial-gradient(circle,rgba(153,246,228,.75),transparent 68%);filter:blur(36px);pointer-events:none}
.hero .glow4{position:absolute;bottom:-10%;right:26%;height:320px;width:320px;border-radius:50%;background:radial-gradient(circle,rgba(251,207,232,.9),transparent 68%);filter:blur(32px);pointer-events:none}
.hero-grid{position:relative;display:grid;gap:3.5rem;align-items:center;padding:5rem 0}
@media(min-width:1024px){.hero-grid{grid-template-columns:1.05fr 1fr;padding:7rem 0}}
.hero h1{font-size:2.6rem;font-weight:800;letter-spacing:-.02em;line-height:1.08;margin-top:1.5rem}
@media(min-width:640px){.hero h1{font-size:3.75rem}}
.hero .lede{margin-top:1.5rem;max-width:36rem;font-size:1.125rem;line-height:1.7;color:var(--sub)}
.hero .pill{background:#fff;border:1px solid var(--line);box-shadow:0 4px 14px -6px rgba(124,58,237,.25)}
.hero-form{margin-top:2.25rem;display:flex;flex-direction:column;gap:.75rem;max-width:28rem}
@media(min-width:640px){.hero-form{flex-direction:row}}
.input{width:100%;border-radius:9999px;border:1px solid var(--line);background:#fff;padding:.875rem 1.25rem;font-size:15px;outline:none;font-family:var(--font-body);transition:border .2s, box-shadow .2s}
.input:focus{border-color:var(--pink);box-shadow:0 0 0 3px rgba(236,72,153,.25)}
.form-note{margin-top:.75rem;font-size:13.5px;color:rgba(95,89,113,.8)}
.yt-card{overflow:hidden;border-radius:1.5rem;border:1px solid var(--line);background:#fff;box-shadow:0 28px 56px -16px rgba(249,115,22,.25)}
.yt-card .video{aspect-ratio:16/9}
.yt-card iframe{height:100%;width:100%;border:0;display:block}
.yt-bar{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1rem 1.25rem}
.yt-bar .t1{font-size:14px;font-weight:600;color:var(--ink)}
.yt-bar .t2{font-size:13px;color:var(--sub)}

/* ===== sections ===== */
.section{padding:5rem 0}
.section-mist{background:rgba(241,239,235,.6)}
.section-dark{background:radial-gradient(640px at 88% 15%,rgba(236,72,153,.28),transparent 62%),radial-gradient(520px at 8% 95%,rgba(20,184,166,.22),transparent 62%),linear-gradient(160deg,var(--night),#241640);color:#fff;position:relative;overflow:hidden}
.section h2.h-lg{margin-top:.75rem;font-size:1.875rem;font-weight:700}
@media(min-width:640px){.section h2.h-lg{font-size:2.25rem}}
.grid-4{display:grid;gap:1.5rem;margin-top:3rem}
@media(min-width:640px){.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1024px){.grid-4{grid-template-columns:repeat(4,1fr)}}
.grid-3{display:grid;gap:1.5rem;margin-top:3rem}
@media(min-width:768px){.grid-3{grid-template-columns:repeat(3,1fr)}}
.grid-2{display:grid;gap:1.25rem;margin-top:2rem}
@media(min-width:640px){.grid-2{grid-template-columns:repeat(2,1fr)}}
.card{border-radius:1.25rem;border:1px solid var(--line);background:#fff;padding:1.75rem;transition:transform .25s}
.card.tint-0{background:var(--lavender);border-color:transparent}
.card.tint-1{background:var(--peach);border-color:transparent}
.card.tint-2{background:var(--sky);border-color:transparent}
.card.tint-3{background:var(--mint);border-color:transparent}
.card.tint-4{background:var(--lemon);border-color:transparent}
.card.tint-5{background:var(--rose);border-color:transparent}
.card[class*="tint-"]:hover{transform:translateY(-4px)}
.card[class*="tint-"] .icon-chip{background:rgba(255,255,255,.75)}
.card[class*="tint-"] p{color:rgba(33,26,54,.7)}
.icon-chip{display:inline-flex;height:3rem;width:3rem;align-items:center;justify-content:center;border-radius:.75rem;background:var(--lavender);font-size:1.5rem}
.icon-chip.lg{height:3.5rem;width:3.5rem;border-radius:1rem;font-size:1.875rem}
.card h3{margin-top:1.25rem;font-size:1.125rem;font-weight:700}
.card p{margin-top:.625rem;font-size:15px;line-height:1.6;color:var(--sub)}
.section-head{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:1rem}
a.text-link{font-size:15px;font-weight:600;color:var(--teal)}
a.text-link:hover{color:#0f766e}

/* journal cards */
a.jcard{display:flex;height:100%;flex-direction:column;border-radius:1rem;border:1px solid var(--line);background:#fff;padding:1.75rem;transition:all .25s}
a.jcard:hover{transform:translateY(-5px);border-color:rgba(249,115,22,.5);box-shadow:0 24px 32px -8px rgba(236,72,153,.2)}
.jcard .meta{margin-top:1.25rem;font-size:12.5px;font-weight:500;text-transform:uppercase;letter-spacing:.05em;color:rgba(95,89,113,.8)}
.jcard h3{margin-top:.5rem;font-size:1.25rem;font-weight:700;line-height:1.35}
a.jcard:hover h3{background:linear-gradient(90deg,var(--orange),var(--pink));-webkit-background-clip:text;background-clip:text;color:transparent}
.jcard .desc{margin-top:.75rem;flex:1;font-size:15px;line-height:1.6;color:var(--sub)}
.jcard .more{margin-top:1.25rem;font-size:15px;font-weight:600;color:var(--teal)}

/* story teaser */
.story-grid{display:grid;gap:3rem;align-items:center;padding:5rem 0}
@media(min-width:1024px){.story-grid{grid-template-columns:1fr 1fr}}
.story-grid .copy{font-size:16.5px;line-height:1.7;color:rgba(255,255,255,.7);margin-top:1.25rem}
.portrait-circle{display:flex;height:18rem;width:18rem;align-items:center;justify-content:center;border-radius:50%;background:linear-gradient(135deg,rgba(249,115,22,.5),rgba(236,72,153,.45),rgba(20,184,166,.35));box-shadow:0 0 80px rgba(236,72,153,.3);color:rgba(255,255,255,.6);font-size:14px;margin:0 auto}
@media(min-width:640px){.portrait-circle{height:20rem;width:20rem}}

/* newsletter */
.newsletter{background:linear-gradient(118deg,var(--violet) 0%,var(--pink) 50%,var(--orange) 100%);text-align:center;position:relative;overflow:hidden}
.newsletter .inner{max-width:48rem;margin:0 auto;padding:5rem 1.25rem}
.newsletter h2{font-size:1.875rem;font-weight:700;color:#fff}
@media(min-width:640px){.newsletter h2{font-size:2.25rem}}
.newsletter .lede{margin:1rem auto 0;max-width:36rem;font-size:17px;line-height:1.7;color:rgba(255,255,255,.8)}
.newsletter form{margin:2rem auto 0;display:flex;flex-direction:column;gap:.75rem;max-width:28rem}
@media(min-width:640px){.newsletter form{flex-direction:row}}
.newsletter .input{border:0;box-shadow:0 0 0 2px transparent}
.newsletter .input:focus{box-shadow:0 0 0 2px rgba(255,255,255,.6)}
.newsletter .fine{margin-top:1rem;font-size:13.5px;color:rgba(255,255,255,.6)}

/* ===== article/prose ===== */
.prose{font-size:17px;line-height:1.75;color:var(--sub);margin-top:2.5rem}
.prose h2{font-size:1.5rem;font-weight:700;color:var(--ink);margin:2.5rem 0 1rem}
.prose h3{font-size:1.25rem;font-weight:600;color:var(--ink);margin:2rem 0 .75rem}
.prose p{margin-bottom:1.25rem}
.prose a{color:var(--violet);text-decoration:underline;text-underline-offset:4px;text-decoration-color:rgba(139,92,246,.4)}
.prose a:hover{text-decoration-color:var(--iris)}
.prose ul,.prose ol{margin:0 0 1.25rem;padding-left:1.5rem}
.prose li{margin-bottom:.5rem}
.prose blockquote{border-left:4px solid rgba(139,92,246,.5);padding-left:1.25rem;font-style:italic;color:rgba(33,26,54,.8);margin:1.5rem 0}
.prose strong{color:var(--ink);font-weight:600}
.prose code{background:var(--mist);padding:.125rem .375rem;border-radius:.25rem;font-size:15px;color:var(--plum)}
.article-head{display:flex;align-items:center;gap:1rem;margin-top:2rem}
.article-meta{font-size:13.5px;font-weight:500;text-transform:uppercase;letter-spacing:.05em;color:var(--sub)}
.article h1{margin-top:1.5rem;font-size:2.25rem;font-weight:800;line-height:1.2}
@media(min-width:640px){.article h1{font-size:2.75rem}}
.article-cta{margin-top:4rem;border-radius:1.5rem;background:linear-gradient(118deg,var(--violet),var(--pink) 55%,var(--orange));padding:2.25rem;color:#fff}
.article-cta h2{font-size:1.25rem;font-weight:700}
.article-cta p{margin-top:.5rem;font-size:15px;color:rgba(255,255,255,.8)}

/* page heroes */
.page-hero h1{margin-top:.75rem;font-size:2.25rem;font-weight:800;line-height:1.15}
@media(min-width:640px){.page-hero h1{font-size:3rem}}
.page-hero .lede{margin-top:1.25rem;max-width:36rem;font-size:1.125rem;line-height:1.7;color:var(--sub)}

/* gear */
.gear-section{margin-top:4rem}
.gear-head{display:flex;align-items:center;gap:1rem}
.gear-head h2{font-size:1.5rem;font-weight:700}
@media(min-width:640px){.gear-head h2{font-size:1.875rem}}
.gear-intro{margin-top:1rem;max-width:42rem;font-size:16px;line-height:1.7;color:var(--sub)}
.gear-cta{margin-top:5rem;border-radius:1.5rem;background:radial-gradient(420px at 90% 10%,rgba(236,72,153,.35),transparent 60%),radial-gradient(380px at 5% 100%,rgba(20,184,166,.25),transparent 60%),linear-gradient(150deg,var(--night),#2b1650);padding:2.5rem;text-align:center;color:#fff;box-shadow:0 0 0 1px rgba(236,72,153,.25)}
.gear-cta h2{font-size:1.5rem;font-weight:700}
.gear-cta p{margin:0.75rem auto 0;max-width:28rem;color:rgba(255,255,255,.7)}
.gear-cta .btn{margin-top:1.5rem}

/* ===== footer ===== */
footer.site{background:var(--night);color:#fff;border-top:4px solid transparent;border-image:linear-gradient(90deg,var(--orange),var(--pink),var(--violet),var(--teal)) 1}
footer.site .inner{padding:4rem 0}
.f-grid{display:flex;flex-direction:column;gap:3rem}
@media(min-width:768px){.f-grid{flex-direction:row;justify-content:space-between}}
.f-brand{max-width:24rem}
.f-brand p.bio{margin-top:.75rem;font-size:14.5px;line-height:1.6;color:rgba(255,255,255,.6)}
.f-cols{display:flex;gap:4rem}
.f-cols p.t{font-size:14px;font-weight:600;color:rgba(255,255,255,.9)}
.f-cols ul{list-style:none;margin-top:1rem}
.f-cols li{margin-bottom:.625rem}
.f-cols a{font-size:14.5px;color:rgba(255,255,255,.6)}
.f-cols a:hover{color:#fff}
.f-bottom{margin-top:3.5rem;display:flex;flex-direction:column;gap:.5rem;border-top:1px solid rgba(255,255,255,.1);padding-top:1.5rem;font-size:13px;color:rgba(255,255,255,.45)}
@media(min-width:640px){.f-bottom{flex-direction:row;justify-content:space-between}}

/* 404 */
.nf{display:flex;flex-direction:column;align-items:center;text-align:center;padding:8rem 1.25rem}
.nf .emoji{font-size:3.75rem}
.nf h1{margin-top:1.5rem;font-size:2.25rem;font-weight:800}
.nf p{margin-top:1rem;max-width:28rem;font-size:1.125rem;color:var(--sub)}
.nf .btn{margin-top:2rem}
.hidden{display:none}
