/* ═══════════════════════════════════════════════════════
   DeepCrazyWorld — Light Theme
   Display: Playfair Display (editorial italic personality)
   Body:    DM Sans (clean, modern, readable)
   Accent:  Indigo #4f46e5 · Warm white bg #fefefe
   Signature: Oversized italic hero title that breaks the
   baseline — "Crazy" spills below the grid in italic
═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700;1,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

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

:root {
  /* Palette */
  --white:   #ffffff;
  --bg:      #fefefe;
  --bg-soft: #f8f7f5;
  --bg-warm: #f2efe9;
  --border:  #e8e4de;
  --border2: #d6d0c8;

  /* Text */
  --ink:     #18120e;
  --ink2:    #3d3530;
  --muted:   #7a7068;
  --subtle:  #b0a89e;

  /* Brand */
  --accent:        #4f46e5;
  --accent-hover:  #3730a3;
  --accent-soft:   #eef2ff;
  --accent-border: rgba(79,70,229,.18);
  --amber:         #d97706;
  --amber-soft:    #fffbeb;
  --red-yt:        #dc2626;

  /* Type */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  /* Layout */
  --nav-h:  62px;
  --max:    1200px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 15px; line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: var(--sans); }

/* ── CONTAINER ───────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ── LOGO ───────────────────────────── */
.logo { font-family: var(--serif); font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.3px; }
.logo em { font-style: italic; color: var(--accent); }

/* ── BUTTONS ─────────────────────────── */
.btn-pri   { display: inline-flex; align-items: center; gap: 7px; background: var(--accent); color: #fff; font-weight: 600; font-size: 14px; padding: 11px 24px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background .18s, transform .15s; }
.btn-pri:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-pri-lg { padding: 14px 32px; font-size: 15px; border-radius: var(--r-md); }
.btn-ghost { display: inline-flex; align-items: center; gap: 7px; background: transparent; color: var(--ink2); font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: var(--r-sm); border: 1.5px solid var(--border2); cursor: pointer; transition: border-color .18s, color .18s, transform .15s; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.btn-ghost-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--r-md); }
.btn-outline-sm { display: inline-flex; align-items: center; gap: 6px; background: var(--bg-soft); color: var(--ink2); font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: var(--r-sm); border: 1px solid var(--border); cursor: pointer; transition: all .15s; }
.btn-outline-sm:hover { border-color: var(--accent); color: var(--accent); }
.btn-buy { display: inline-flex; align-items: center; background: var(--accent-soft); color: var(--accent); font-size: 13px; font-weight: 600; padding: 7px 16px; border-radius: var(--r-sm); border: 1px solid var(--accent-border); cursor: pointer; transition: all .15s; }
.btn-buy:hover { background: var(--accent); color: #fff; }
.btn-yt { display: inline-flex; align-items: center; gap: 7px; background: var(--red-yt); color: #fff; font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: var(--r-sm); border: none; cursor: pointer; transition: background .15s; }
.btn-yt:hover { background: #b91c1c; }

/* ── FLASH ───────────────────────────── */
.flash { padding: 12px 28px; font-size: 14px; font-weight: 500; text-align: center; }
.flash-ok  { background: #f0fdf4; color: #15803d; border-bottom: 1px solid #bbf7d0; }
.flash-err { background: #fef2f2; color: #b91c1c; border-bottom: 1px solid #fecaca; }

/* ── NAV ─────────────────────────────── */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200; height: var(--nav-h);
  background: rgba(254,254,254,.88); backdrop-filter: blur(14px) saturate(1.6);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.site-nav__inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; gap: 8px; }
.site-nav__links { display: flex; gap: 2px; margin-left: 16px; flex: 1; }
.site-nav__links a { font-size: 14px; font-weight: 500; color: var(--muted); padding: 6px 12px; border-radius: var(--r-sm); transition: all .15s; }
.site-nav__links a:hover, .site-nav__links a.on { color: var(--ink); background: var(--bg-warm); }
.site-nav__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 8px; }
.hamburger span { width: 20px; height: 1.5px; background: var(--ink); display: block; }
.mob-menu { display: none; position: absolute; top: var(--nav-h); inset: auto 0 auto 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px 20px; flex-direction: column; gap: 2px; box-shadow: var(--shadow-md); }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 15px; font-weight: 500; color: var(--ink2); padding: 10px 12px; border-radius: var(--r-sm); }
.mob-menu a:hover { background: var(--bg-soft); color: var(--accent); }

/* ── SECTION UTILITIES ───────────────── */
.section { padding: 88px 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; display: block; margin-bottom: 10px; }
.sec-title { font-family: var(--serif); font-size: clamp(28px,4vw,42px); font-weight: 800; color: var(--ink); line-height: 1.12; }
.sec-title em { font-style: italic; color: var(--accent); }
.sec-desc { font-size: 15px; color: var(--muted); margin-top: 12px; line-height: 1.7; }
.sec-more { text-align: center; margin-top: 44px; }

/* ── HERO ────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 48px) 28px 72px;
  position: relative; overflow: hidden; background: var(--bg);
}
.hero__dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 20%, transparent 80%);
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 0%, rgba(79,70,229,.06) 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .4px;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero__pill-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: blink 2.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(1.5)} }

/* SIGNATURE: oversized Playfair serif with italic "Crazy" line */
.hero__h1 { font-family: var(--serif); font-weight: 800; line-height: .9; letter-spacing: -4px; margin-bottom: 0; }
.hero__h1-top  { display: block; font-size: clamp(64px,11vw,120px); color: var(--ink); }
.hero__h1-mid  { display: block; font-size: clamp(72px,13vw,140px); color: var(--accent); font-style: italic; margin-top: -8px; }
.hero__h1-bot  { display: block; font-size: clamp(64px,11vw,120px); color: var(--ink); margin-top: -4px; }

.hero__sub { font-size: clamp(15px,2vw,18px); color: var(--muted); max-width: 520px; margin: 28px auto 36px; line-height: 1.72; }
.hero__sub strong { color: var(--ink2); font-weight: 600; }
.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero__stats { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.hero__stat { text-align: center; padding: 0 36px; }
.h-s-num { display: block; font-family: var(--serif); font-size: 32px; font-weight: 800; color: var(--ink); }
.h-s-lbl { display: block; font-size: 12px; color: var(--subtle); margin-top: 2px; letter-spacing: .3px; }
.hero__stat-sep { width: 1px; height: 40px; background: var(--border); }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-size: 10px; letter-spacing: 2px; color: var(--subtle); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.hero__scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }

/* ── PRODUCTS ────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(268px,1fr)); gap: 22px; }
.prod-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .22s, transform .22s; }
.prod-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.prod-card__thumb { position: relative; aspect-ratio: 16/9; background: var(--bg-warm); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.prod-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.prod-card:hover .prod-card__thumb img { transform: scale(1.04); }
.prod-card__thumb-icon { color: var(--border2); }
.prod-card__badge { position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 5px; letter-spacing: .4px; }
.prod-card__body { padding: 20px; }
.prod-card__cat  { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.prod-card__title { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); margin: 6px 0 8px; line-height: 1.35; }
.prod-card__title a:hover { color: var(--accent); }
.prod-card__desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 18px; }
.prod-card__foot { display: flex; align-items: center; justify-content: space-between; }
.prod-card__price { font-family: var(--serif); font-size: 21px; font-weight: 700; color: var(--ink); }
.prod-card__price s { font-family: var(--sans); font-size: 12px; color: var(--subtle); font-weight: 400; margin-left: 4px; }

/* ── PRODUCT DETAIL ───────────────────── */
.prod-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; padding: calc(var(--nav-h) + 48px) 0 80px; }
.prod-detail__img img { border-radius: var(--r-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.prod-detail__img-ph  { aspect-ratio: 4/3; background: var(--bg-warm); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; color: var(--border2); }
.prod-trust { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.prod-trust span { font-size: 12px; color: #15803d; background: #f0fdf4; padding: 4px 12px; border-radius: 20px; font-weight: 500; border: 1px solid #bbf7d0; }
.prod-detail__cat { margin-bottom: 8px; }
.prod-detail__h1  { font-family: var(--serif); font-size: clamp(24px,3.5vw,38px); font-weight: 800; color: var(--ink); line-height: 1.15; margin-bottom: 14px; }
.prod-detail__short { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 22px; }
.prod-detail__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px; }
.price-big  { font-family: var(--serif); font-size: 40px; font-weight: 800; color: var(--ink); }
.price-was  { font-size: 18px; color: var(--subtle); text-decoration: line-through; }
.price-tag  { background: #dcfce7; color: #15803d; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.prod-detail__desc { font-size: 15px; color: var(--ink2); line-height: 1.8; margin-bottom: 28px; }
.prod-detail__desc ul { padding-left: 20px; margin-top: 8px; }
.prod-detail__desc li { margin-bottom: 5px; }
.btn-buy-full { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px; background: var(--accent); color: #fff; font-size: 16px; font-weight: 700; border: none; border-radius: var(--r-md); cursor: pointer; transition: background .18s, transform .15s; }
.btn-buy-full:hover { background: var(--accent-hover); transform: translateY(-1px); }
.prod-detail__note { text-align: center; font-size: 12px; color: var(--subtle); margin-top: 10px; }

/* ── FOUNDER ─────────────────────────── */
.founder-wrap { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: center; max-width: 1100px; margin: 0 auto; }
.founder-img-wrap { position: relative; }
.founder-img-frame { aspect-ratio: 4/5; background: linear-gradient(145deg, var(--accent-soft) 0%, #e0d9ff 100%); border-radius: var(--r-xl); border: 1px solid var(--accent-border); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.founder-img-frame svg { opacity: .5; }
.founder-img-frame p  { font-size: 11px; letter-spacing: 1.5px; color: var(--accent); margin-top: 10px; font-weight: 600; }
.founder-badge { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 8px 20px; font-size: 13px; font-weight: 600; white-space: nowrap; display: flex; align-items: center; gap: 7px; box-shadow: var(--shadow-sm); }
.founder-name { font-family: var(--serif); font-size: clamp(32px,4vw,52px); font-weight: 800; line-height: 1.08; margin: 10px 0 18px; }
.founder-name em { display: block; font-style: italic; color: var(--accent); }
.founder-bio { font-size: 15px; color: var(--muted); line-height: 1.78; margin-bottom: 14px; }
.founder-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.founder-chips span { background: var(--bg-warm); border: 1px solid var(--border); font-size: 12px; color: var(--ink2); padding: 5px 14px; border-radius: 100px; font-weight: 500; }
.founder-links { display: flex; gap: 10px; flex-wrap: wrap; }
.f-link { display: flex; align-items: center; gap: 8px; background: var(--bg-soft); border: 1px solid var(--border); color: var(--ink2); font-size: 13px; font-weight: 600; padding: 9px 18px; border-radius: var(--r-sm); transition: all .18s; }
.f-link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }
.f-link--yt { background: #fef2f2; border-color: #fecaca; color: var(--red-yt); }

/* ── VIDEOS ──────────────────────────── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 22px; }
.vid-card { display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .22s, transform .22s; }
.vid-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vid-card__thumb { position: relative; aspect-ratio: 16/9; background: #111; overflow: hidden; }
.vid-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; filter: brightness(.9); }
.vid-card:hover .vid-card__thumb img { transform: scale(1.03); filter: brightness(.95); }
.vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; background: rgba(220,38,38,.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s; }
.vid-card:hover .vid-play { transform: translate(-50%,-50%) scale(1.1); background: var(--red-yt); }
.vid-views { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.7); color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 4px; font-weight: 500; }
.vid-card__body { padding: 14px 16px; }
.vid-card__cat { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.vid-card__body h3 { font-size: 14px; font-weight: 600; color: var(--ink); margin-top: 5px; line-height: 1.4; }
.yt-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--r-md); padding: 22px 28px; margin-top: 36px; flex-wrap: wrap; }
.yt-bar__left { display: flex; align-items: center; gap: 14px; }
.yt-bar__icon { width: 44px; height: 44px; background: var(--red-yt); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.yt-bar__left strong { display: block; font-size: 15px; font-weight: 700; }
.yt-bar__left span   { font-size: 13px; color: var(--muted); }
.vid-embed { aspect-ratio: 16/9; border-radius: var(--r-xl); overflow: hidden; background: #000; }
.vid-embed iframe { width: 100%; height: 100%; border: none; }

/* ── BLOG ────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 26px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .22s, transform .22s; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card__thumb { display: block; position: relative; aspect-ratio: 16/8; overflow: hidden; }
.blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.blog-card:hover .blog-card__thumb img { transform: scale(1.05); }
.blog-card__thumb-ph { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-soft) 100%); }
.blog-cat { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--accent); font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 6px; border: 1px solid var(--accent-border); letter-spacing: .3px; }
.blog-card__body { padding: 20px 22px; }
.blog-meta { display: flex; gap: 6px; font-size: 12px; color: var(--subtle); margin-bottom: 10px; }
.blog-card__body h3 { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.32; margin-bottom: 10px; }
.blog-card__body h3 a:hover { color: var(--accent); }
.blog-card__body p  { font-size: 13px; color: var(--muted); line-height: 1.62; margin-bottom: 18px; }
.blog-card__foot { display: flex; align-items: center; justify-content: space-between; }
.blog-byline { display: flex; align-items: center; gap: 8px; }
.blog-av { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.blog-byline span { font-size: 12px; color: var(--muted); font-weight: 500; }
.blog-read-more { font-size: 13px; color: var(--accent); font-weight: 600; }
.blog-read-more:hover { text-decoration: underline; }
/* Article */
.article-head { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: calc(var(--nav-h)+44px) 28px 52px; text-align: center; }
.article-head h1 { font-family: var(--serif); font-size: clamp(28px,4.5vw,52px); font-weight: 800; max-width: 820px; margin: 10px auto 0; line-height: 1.12; }
.article-head-meta { display: flex; justify-content: center; margin-top: 22px; }
.article-head-meta .blog-byline { flex-direction: column; gap: 4px; align-items: center; }
.article-head-meta strong { font-size: 14px; }
.article-head-meta span  { font-size: 12px; color: var(--subtle); }
.article-cover { max-height: 500px; overflow: hidden; }
.article-cover img { width: 100%; object-fit: cover; }
.article-body { max-width: 780px; margin: 0 auto; padding: 52px 28px; font-size: 17px; line-height: 1.86; color: var(--ink2); }
.article-body h2,.article-body h3 { font-family: var(--serif); margin: 36px 0 16px; color: var(--ink); }
.article-body h2 { font-size: 28px; }
.article-body h3 { font-size: 22px; }
.article-body p  { margin-bottom: 22px; }
.article-body ul,.article-body ol { margin: 18px 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-body img { border-radius: var(--r-lg); margin: 28px 0; }
.article-body blockquote { border-left: 3px solid var(--accent); padding-left: 22px; color: var(--muted); font-style: italic; margin: 28px 0; }

/* ── TESTIMONIALS ────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(290px,1fr)); gap: 22px; max-width: 1060px; margin: 0 auto; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.testi-stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p  { font-size: 14px; color: var(--ink2); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testi-card p::before { content: '"'; font-family: var(--serif); font-size: 32px; color: var(--accent); line-height: 0; vertical-align: -12px; margin-right: 3px; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.testi-author strong { display: block; font-size: 14px; }
.testi-author small  { display: block; font-size: 12px; color: var(--subtle); }

/* ── CTA / NEWSLETTER ────────────────── */
.cta-box { background: linear-gradient(130deg, var(--accent-soft) 0%, #dde5ff 100%); border: 1px solid var(--accent-border); border-radius: var(--r-xl); padding: 60px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta-box h2 { font-family: var(--serif); font-size: clamp(24px,3vw,36px); font-weight: 800; line-height: 1.15; }
.cta-box h2 em { font-style: italic; color: var(--accent); }
.cta-box p { font-size: 15px; color: var(--muted); margin-top: 10px; line-height: 1.7; }
.cta-form { display: flex; gap: 10px; flex-wrap: wrap; }
.cta-form input { flex: 1; min-width: 200px; padding: 12px 18px; border: 1.5px solid var(--accent-border); border-radius: var(--r-sm); font-size: 14px; color: var(--ink); background: rgba(255,255,255,.7); outline: none; }
.cta-form input:focus { border-color: var(--accent); background: var(--white); }

/* ── PAGE HERO ───────────────────────── */
.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: calc(var(--nav-h)+44px) 0 52px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(30px,4.5vw,52px); font-weight: 800; margin-top: 8px; line-height: 1.1; }
.page-hero h1 em { font-style: italic; color: var(--accent); }

/* ── STORE TOOLBAR ───────────────────── */
.store-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.store-search { display: flex; }
.store-search input { padding: 10px 16px; border: 1.5px solid var(--border); border-right: none; border-radius: var(--r-sm) 0 0 var(--r-sm); font-size: 14px; outline: none; min-width: 220px; color: var(--ink); background: var(--white); }
.store-search input:focus { border-color: var(--accent); }
.store-search button { padding: 10px 20px; background: var(--accent); color: #fff; border: none; border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: 14px; font-weight: 600; cursor: pointer; }
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-tabs a { font-size: 13px; font-weight: 500; padding: 7px 18px; border-radius: 100px; border: 1.5px solid var(--border); color: var(--ink2); transition: all .15s; }
.cat-tabs a:hover, .cat-tabs a.on { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ── FORMS ───────────────────────────── */
.form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink2); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; color: var(--ink); background: var(--white); outline: none; transition: border-color .18s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; line-height: 1.65; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.c-info-item { display: flex; align-items: flex-start; gap: 14px; }
.c-info-icon { width: 40px; height: 40px; background: var(--accent-soft); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.c-info-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.c-info-item p, .c-info-item a { font-size: 14px; color: var(--muted); }
.c-info-item a:hover { color: var(--accent); }

/* ── FAQ ─────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .18s; }
.faq-item[open] { border-color: var(--accent-border); }
.faq-item summary { padding: 16px 20px; font-size: 15px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--accent); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FOOTER ──────────────────────────── */
.site-footer { background: var(--bg-warm); border-top: 1px solid var(--border); padding: 72px 0 32px; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.68; margin: 12px 0 22px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .15s; }
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom { max-width: var(--max); margin: 52px auto 0; padding: 20px 28px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: var(--subtle); }

/* ── PAGINATION ──────────────────────── */
.pagi { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.pagi li a, .pagi li span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--r-sm); font-size: 13px; border: 1px solid var(--border); color: var(--ink2); transition: all .15s; }
.pagi li a:hover { border-color: var(--accent); color: var(--accent); }
.pagi li.active span { background: var(--accent); color: #fff; border-color: var(--accent); }
.pagi li.disabled span { color: var(--subtle); pointer-events: none; }

/* ── AUTH PAGES ──────────────────────── */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 20px; background: var(--bg-soft); }
.auth-card { width: 100%; max-width: 420px; }
.auth-card .logo { font-size: 24px; display: block; text-align: center; margin-bottom: 8px; }
.auth-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--muted); }
.auth-footer a { color: var(--accent); font-weight: 600; }

/* ── ACCOUNT / ORDERS ────────────────── */
.account-empty { text-align: center; padding: 80px 20px; color: var(--muted); }

/* ── SUCCESS PAGE ────────────────────── */
.success-wrap { text-align: center; max-width: 580px; margin: 0 auto; padding: 80px 20px; }
.success-wrap .success-emoji { font-size: 60px; margin-bottom: 20px; }
.success-wrap h1 { font-family: var(--serif); font-size: 34px; margin-bottom: 12px; }
.success-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; margin: 28px 0; font-size: 14px; color: var(--muted); }
code { background: var(--bg-warm); border: 1px solid var(--border); padding: 2px 8px; border-radius: 5px; font-size: 13px; color: var(--ink2); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 960px) {
  .site-nav__links, .site-nav__actions { display: none; }
  .hamburger { display: flex; }
  .founder-wrap, .prod-detail { grid-template-columns: 1fr; gap: 36px; }
  .cta-box { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__stat { padding: 0 20px; }
  .section { padding: 64px 0; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { gap: 12px; }
  .hero__stat-sep { display: none; }
  .store-bar { flex-direction: column; align-items: stretch; }
  .wrap { padding: 0 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
