/* ===========================================================
   FavDrop — Core Stylesheet
   Style: Soft Minimal + Bento
   Palette: soft off-white / graphite ink / violet accent / mint + amber supports
   =========================================================== */

:root {
  --bg: #F7F7F9;
  --surface: #FFFFFF;
  --surface-2: #F1F1F5;
  --line: #E7E7EE;
  --line-2: #DEDEE8;
  --ink: #15151C;
  --ink-2: #1E1E27;
  --text-body: #4B4B58;
  --text-muted: #6B6B78;
  --text-faint: #8B8B98;
  --text-faint-2: #A5A5B2;

  --accent: #6C5CE7;
  --accent-ink: #4E3FD1;
  --accent-soft: #EFECFD;
  --mint: #17A673;
  --mint-soft: #E3F6EE;
  --amber: #C9820A;
  --amber-soft: #FBF0DC;
  --coral: #E24C4C;
  --coral-soft: #FBEAEA;

  --card-1: #EFECFD; /* violet tint */
  --card-2: #E3F6EE; /* mint tint */
  --card-3: #FBF0DC; /* amber tint */
  --card-4: #FDE9EF; /* pink tint */
  --card-5: #E8F1FB; /* sky tint */

  --white: #FFFFFF;
  --footer-bg: #15151C;
  --footer-muted: #9B9BAC;
  --footer-label: #6E6E82;
  --footer-line: #2A2A35;
  --success: #17A673;

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --container: 1180px;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 2px 10px rgba(21,21,28,.04);
  --shadow-card: 0 10px 30px -14px rgba(21,21,28,.14);
  --shadow-hover: 0 20px 44px -16px rgba(21,21,28,.20);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: var(--accent-ink); text-decoration: none; }
a:hover { color: var(--ink); }
img { max-width: 100%; display: block; }
input, button, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
button { cursor: pointer; }

@keyframes fdmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fdfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fdin { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,247,249,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  height: 76px; display: flex; align-items: center; gap: 32px;
}
.logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.03em; color: var(--ink);
}
.logo .mark {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo .mark svg { width: 22px; height: 22px; }
.logo .dot { color: var(--accent); }
.nav-desktop { display: flex; gap: 26px; margin-left: 8px; flex-wrap: wrap; }
.nav-desktop a { font-size: 15px; font-weight: 500; color: var(--text-body); }
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.active { color: var(--ink); font-weight: 600; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.btn-login {
  font-size: 15px; font-weight: 600; color: var(--ink);
  padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--line-2);
}
.btn-login:hover { border-color: var(--ink); background: var(--surface); }
.btn-signup {
  font-size: 15px; font-weight: 600; color: var(--white);
  padding: 12px 20px; border-radius: 999px; background: var(--ink);
}
.btn-signup:hover { background: var(--accent); color: var(--white); }

.nav-toggle {
  display: none; background: none; border: none;
  width: 40px; height: 40px; border-radius: 10px;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--ink);
  position: relative; transition: all .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 24px; border-top: 1px solid var(--line); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; font-weight: 500; border-bottom: 1px solid var(--line); color: var(--text-body); }
.mobile-menu .mobile-actions { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu .btn-login, .mobile-menu .btn-signup { flex: 1; text-align: center; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header-actions .btn-login { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Buttons (generic) ===== */
.btn-dark {
  display: inline-block; font-size: 16.5px; font-weight: 600; color: var(--white);
  background: var(--ink); padding: 16px 28px; border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.btn-dark:hover { background: var(--accent); color: var(--white); transform: translateY(-1px); }
.btn-outline-lg {
  display: inline-block; font-size: 16.5px; font-weight: 600; color: var(--ink);
  padding: 16px 26px; border-radius: 999px; border: 1.5px solid var(--line-2);
  transition: border-color .2s ease;
}
.btn-outline-lg:hover { border-color: var(--ink); }
.btn-coral {
  display: inline-block; font-size: 16.5px; font-weight: 600; color: var(--white);
  background: var(--accent); padding: 16px 28px; border-radius: 999px; border: none;
}
.btn-coral:hover { background: var(--ink); }
.btn-cream {
  display: inline-block; font-size: 16.5px; font-weight: 600; color: var(--ink);
  background: var(--white); padding: 16px 32px; border-radius: 999px;
}
.btn-cream:hover { background: var(--accent); color: var(--white); }

/* ===== data-anim scroll reveal ===== */
[data-anim] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
[data-anim].in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1; transform: none; }
}

/* ===== Hero ===== */
.hero {
  max-width: var(--container); margin: 0 auto; padding: 68px 24px 40px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; color: var(--text-faint);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(42px, 5vw, 70px); line-height: .98; letter-spacing: -.035em;
  margin: 0 0 22px; text-wrap: balance;
}
.hero h1 .coral { color: var(--accent); }
.hero .lead { font-size: 18.5px; line-height: 1.55; color: var(--text-body); max-width: 500px; margin: 0 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.hero-note { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-faint); margin: 0; }

/* ===== Bento hero visual (photo + stat tiles) ===== */
.hero-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bento-tile {
  border-radius: var(--radius-md); border: 1px solid var(--line);
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.bento-tile.tall { grid-row: span 2; }

.hero-visual .bt-photo { min-height: 380px; }
.hero-visual .bt-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-visual .bt-photo-card {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: var(--radius-sm); padding: 14px 16px;
}
.hero-visual .bt-photo-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: var(--accent-ink); display: block; margin-bottom: 4px; }
.hero-visual .bt-photo-card .amt { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -.03em; color: var(--ink); }

.hero-visual .bt-b { background: var(--ink); color: var(--white); padding: 20px; display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.hero-visual .bt-b .num { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -.02em; }
.hero-visual .bt-b .lbl { font-size: 12.5px; color: var(--footer-muted); }

.hero-visual .bt-photo-sm { min-height: 170px; }
.hero-visual .bt-photo-sm img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-visual { order: -1; margin-bottom: 8px; }
  .hero-visual .bt-photo { min-height: 280px; }
}

/* ===== Stats strip (bento) ===== */
.stats-strip { max-width: var(--container); margin: 0 auto; padding: 24px 24px 76px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.stats-grid > div {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 28px 24px; box-shadow: var(--shadow-soft); transition: box-shadow .3s ease, transform .3s ease;
}
.stats-grid > div:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.stats-grid .num { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.stats-grid .lbl { font-size: 14px; color: var(--text-faint); margin-top: 8px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== Brand marquee ===== */
.marquee-section { background: var(--ink); color: var(--white); padding: 52px 0; overflow: hidden; }
.marquee-title {
  text-align: center; font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: .12em; color: var(--footer-muted); margin: 0 0 32px;
}
.marquee-track { display: flex; width: max-content; animation: fdmarquee 34s linear infinite; }
.marquee-track div {
  width: 190px; height: 84px; margin: 0 8px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--ink-2); border: 1px solid var(--footer-line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  letter-spacing: -.02em; color: #D6D6E2;
}

/* ===== Section headings ===== */
.bg-soft { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-pad { max-width: var(--container); margin: 0 auto; padding: 92px 24px; }
.section-pad h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 3.8vw, 50px); letter-spacing: -.03em; line-height: 1.04;
  margin: 0 0 14px;
}
.section-pad > p.section-lead { font-size: 17.5px; color: var(--text-body); margin: 0 0 46px; max-width: 540px; }

/* ===== Steps (bento cards) ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.step-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px 26px 26px; box-shadow: var(--shadow-soft);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step-card .step-num { font-family: var(--font-mono); font-size: 13px; color: var(--accent-ink); margin-bottom: 40px; display: inline-block; padding: 5px 10px; background: var(--accent-soft); border-radius: 999px; }
.step-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; margin: 0 0 10px; }
.step-card p { font-size: 15.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }

/* ===== Feature grid (bento, varied tints) ===== */
.feature-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.feature-grid > div {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 28px 34px; box-shadow: var(--shadow-soft);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.feature-grid > div:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-grid > div:nth-child(1) { background: var(--card-1); }
.feature-grid > div:nth-child(2) { background: var(--card-2); }
.feature-grid > div:nth-child(3) { background: var(--card-3); }
.feature-grid > div:nth-child(4) { background: var(--card-4); }
.feature-grid > div:nth-child(5) { background: var(--card-5); }
.feature-grid > div:nth-child(6) { background: var(--surface); }
.feature-grid h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.015em; margin: 0 0 9px; }
.feature-grid p { font-size: 15px; line-height: 1.55; color: var(--text-body); margin: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

/* ===== Icon badge (feature icons across pages) ===== */
.icon-badge {
  width: 44px; height: 44px; border-radius: 12px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.icon-badge svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-badge.dark { background: var(--accent); }
.icon-badge.outline { background: var(--white); border: 1.5px solid var(--line); }
.icon-badge.outline svg { stroke: var(--accent-ink); }

/* ===== Gallery (bento showcase, photos) ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 92px; }
.gallery-grid figure {
  margin: 0; border-radius: var(--radius-md); overflow: hidden; height: 280px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--line);
}
.gallery-grid figure:hover { transform: translateY(-6px); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== Categories (bento) ===== */
.cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.cat-card {
  border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  box-shadow: var(--shadow-soft);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.cat-card .thumb { height: 132px; overflow: hidden; }
.cat-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cat-card .body { padding: 15px 16px 17px; }
.cat-card .name { font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.cat-card .count { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint); margin-top: 5px; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }

/* ===== Testimonials ===== */
.testimonial-section { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 88px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.t-card {
  border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 20px; background: var(--bg);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.t-card p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; flex: 1; }
.t-person { display: flex; align-items: center; gap: 13px; }
.t-avatar { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; overflow: hidden; background: var(--accent); }
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-person .name { font-weight: 600; font-size: 15px; }
.t-person .meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-top: 3px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-wrap { max-width: 860px; margin: 0 auto; padding: 92px 24px; }
.faq-wrap h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,3.4vw,44px); letter-spacing: -.03em; margin: 0 0 32px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 4px;
  display: flex; align-items: center; gap: 20px; cursor: pointer; text-align: left; color: var(--ink);
}
.faq-q .q-text { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.015em; flex: 1; }
.faq-q .sign { font-size: 20px; color: var(--accent-ink); line-height: 1; width: 22px; text-align: center; }
.faq-a { font-size: 16px; line-height: 1.6; color: var(--text-muted); margin: 0 0 24px; padding-right: 60px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ===== CTA band ===== */
.cta-wrap { max-width: var(--container); margin: 0 auto 92px; padding: 0 24px; }
.cta-band { background: var(--ink); border-radius: var(--radius-lg); padding: 72px 54px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; background: radial-gradient(560px 300px at 15% 0%, rgba(108,92,231,.35), transparent 60%);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,4.2vw,54px);
  letter-spacing: -.035em; line-height: 1.04; margin: 0 0 16px; text-wrap: balance; position: relative;
}
.cta-band p { font-size: 17.5px; color: var(--footer-muted); margin: 0 auto 30px; max-width: 520px; position: relative; }
.cta-band .btn-cream { position: relative; }
@media (max-width: 700px) { .cta-band { padding: 52px 26px; } }

/* ===== Footer ===== */
.site-footer { background: var(--footer-bg); color: var(--footer-muted); padding: 60px 0 32px; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.03em; color: var(--white); margin-bottom: 16px; }
.footer-brand .mark { display: inline-flex; align-items: center; justify-content: center; }
.footer-brand .mark svg { width: 21px; height: 21px; }
.footer-company-name { font-size: 14px; line-height: 1.6; margin-bottom: 8px; color: var(--white); font-weight: 600; }
.footer-addr { font-size: 13.5px; line-height: 1.65; max-width: 340px; }
.footer-label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--footer-label); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14px; color: var(--footer-muted); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: var(--container); margin: 40px auto 0; padding: 22px 24px 0;
  border-top: 1px solid var(--footer-line); font-size: 13px; color: var(--footer-label);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== Inner page heros ===== */
.page-main { max-width: var(--container); margin: 0 auto; padding: 76px 24px 92px; }
.page-main.narrow { max-width: 820px; }
.page-main.narrower { max-width: 780px; }
.page-eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--accent-ink); margin-bottom: 20px; }
.page-h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px,4.4vw,58px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 22px; }
.page-lead { font-size: 18.5px; line-height: 1.55; color: var(--text-body); margin: 0 0 34px; }
.page-lead-2 { font-size: 18px; line-height: 1.65; color: var(--text-body); margin: 0 0 20px; }

/* ===== Brands page ===== */
.brands-hero-content { max-width: 760px; }
.brands-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 60px; }
.brands-features > div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px 28px 34px; box-shadow: var(--shadow-soft); transition: transform .3s ease, box-shadow .3s ease; }
.brands-features > div:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.brands-features h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.015em; margin: 0 0 9px; }
.brands-features p { font-size: 15px; line-height: 1.55; color: var(--text-body); margin: 0; }
@media (max-width: 900px) { .brands-features { grid-template-columns: 1fr; } }

/* ===== About page ===== */
.about-card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; background: var(--surface); box-shadow: var(--shadow-soft); }
.about-card .label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 16px; }
.about-card .name { font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.about-card .addr { font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.about-card .info-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.about-card .info-links a { font-weight: 600; font-size: 14.5px; }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-detail { margin-bottom: 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; }
.contact-detail .label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--text-faint); margin-bottom: 7px; }
.contact-detail .val { font-size: 16.5px; font-weight: 600; }
.contact-detail .addr { font-size: 15px; line-height: 1.6; color: var(--text-body); }
.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px; display: flex; flex-direction: column; gap: 16px; align-self: start;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===== Forms ===== */
.field-label { font-size: 14px; font-weight: 600; display: flex; flex-direction: column; gap: 7px; }
.field-label input, .field-label textarea, .field-label select {
  font-size: 16px; padding: 14px 15px; border-radius: 12px; border: 1px solid var(--line-2);
  background: var(--bg); font-weight: 400; color: var(--ink);
}
.field-label textarea { resize: vertical; }
.field-label input:focus, .field-label textarea:focus, .field-label select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.check-label { font-size: 13.5px; color: var(--text-muted); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.check-label input { margin-top: 3px; }
.form-submit {
  font-size: 16px; font-weight: 600; color: var(--white); background: var(--ink);
  border: none; padding: 16px; border-radius: 999px; cursor: pointer;
}
.form-submit:hover { background: var(--accent); }
.form-note { font-size: 14px; color: var(--success); margin: 0; text-align: center; display: none; }
.form-note.show { display: block; }
.form-hint { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint-2); margin: 0; text-align: center; line-height: 1.5; }

/* ===== Auth page ===== */
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.auth-perks { display: flex; flex-direction: column; gap: 14px; }
.auth-perk { display: flex; gap: 12px; align-items: flex-start; }
.auth-perk .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--accent); margin-top: 8px; flex-shrink: 0; }
.auth-perk .text { font-size: 16px; color: var(--text-body); }
.auth-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--shadow-card); }
.auth-submit {
  font-size: 16px; font-weight: 600; color: var(--white); background: var(--accent);
  border: none; padding: 16px; border-radius: 999px; cursor: pointer;
}
.auth-submit:hover { background: var(--ink); }
.auth-switch { text-align: center; font-size: 15px; color: var(--text-muted); }
.auth-switch a { font-weight: 600; }
@media (max-width: 900px) { .auth-grid { grid-template-columns: 1fr; } }

.form-alert { border-radius: 14px; padding: 14px 16px; font-size: 14.5px; line-height: 1.5; }
.form-alert p { margin: 0; }
.form-alert p + p { margin-top: 6px; }
.form-alert a { text-decoration: underline; font-weight: 600; }
.form-alert-error { background: var(--coral-soft); border: 1px solid #F3C6C6; color: #A3341F; }
.form-alert-success { background: var(--mint-soft); border: 1px solid #BFE0CE; color: #1F7A55; }

/* ===== Legal page ===== */
.legal-updated { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); margin: 0 0 40px; }
.legal-block { margin-bottom: 32px; }
.legal-block h2 { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.015em; margin: 0 0 10px; }
.legal-block p { font-size: 16px; line-height: 1.65; color: var(--text-body); margin: 0; }
.legal-contact { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; background: var(--surface); font-size: 15px; line-height: 1.6; color: var(--text-muted); }
.legal-contact .tmpl-note { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint-2); margin: 14px 0 0; }

/* ===== Blog page ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--surface);
  color: var(--ink); display: block; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease;
  box-shadow: var(--shadow-soft);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); color: var(--ink); }
.blog-card .cover { height: 168px; overflow: hidden; }
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .content { padding: 20px 20px 24px; }
.blog-card .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--accent-ink); margin-bottom: 11px; }
.blog-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -.015em; margin: 0 0 8px; line-height: 1.25; }
.blog-card p { font-size: 14.5px; line-height: 1.5; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; } }

/* ===== Breadcrumb-free page tweaks ===== */
@media (max-width: 900px) {
  .hero, .stats-strip, .section-pad, .page-main, .faq-wrap { padding-left: 20px; padding-right: 20px; }
}
