/* ============================================================================
   21st Century Artisan · GUR — single-page site
   Palette + typography mirror the in-app aesthetic (kUiAccent #63d7d4, dark).
   ============================================================================ */

:root {
  --bg:          #0b0f15;
  --panel:       #141c26;
  --panel-soft:  #111824;
  --line:        #1f2a38;
  --text:        #e6ecf2;
  --muted:       #8693a3;
  --accent:      #63d7d4;
  --accent-dim:  #63d7d433;
  --warn:        #ff6a78;

  --maxw: 1080px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(ellipse at top, rgba(99,215,212,0.06), transparent 55%),
    radial-gradient(ellipse 1200px 600px at 50% 25%, rgba(99,215,212,0.04), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); }

h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.16em;
  margin: 0;
}

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(99,215,212,0.18));
}
.brand-name {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 17px;
  color: var(--text);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.15s ease;
}
.header-link:hover { color: var(--text); }
.header-ig {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  transition: color 0.15s ease;
}
.header-ig:hover { color: var(--accent); }

@media (max-width: 640px) {
  .site-header { padding: 18px 16px; }
  .brand-name  { display: none; }                /* mark only on small */
  .header-nav  { gap: 16px; }
  .header-link { font-size: 13px; }
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  max-width: var(--maxw);
  margin: 24px auto 40px;
  padding: 60px var(--gutter) 50px;
  text-align: center;
}
.hero-logo {
  margin: 0 auto 28px;
  max-width: 440px;
  width: min(78vw, 440px);
  filter: drop-shadow(0 0 40px rgba(99,215,212,0.22));
}
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-size: clamp(15px, 1.9vw, 19px);
  margin-bottom: 26px;
}
.hero-lede {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text);
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  display: inline-block;
  padding: 9px 20px;
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.18em;
  font-size: 13px;
}
.cta-secondary {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: color 0.15s ease;
}
.cta-secondary:hover { color: var(--accent); }

/* ── Section heads (shared) ─────────────────────────────── */
.section-head {
  max-width: 740px;
  margin: 0 auto 32px;
  text-align: center;
  padding: 0 var(--gutter);
}
.section-head h2 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 10px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}

/* ── TRY IT (browser demo iframe) ───────────────────────── */
.try-section { padding: 60px var(--gutter) 70px; }
.iframe-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  position: relative;
  box-shadow: 0 30px 80px -40px rgba(99,215,212,0.18);
}
.iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.try-note {
  max-width: 600px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ── FEATURES ───────────────────────────────────────────── */
.features-section { padding: 60px var(--gutter) 70px; }
.feature-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.card {
  background: var(--panel-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
}
.card h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ── PLATFORMS ──────────────────────────────────────────── */
.platforms-section { padding: 50px var(--gutter) 60px; }
.platforms-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: var(--muted);
}
.platform.live { color: var(--text); }
.platform.soon { color: var(--accent); }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-section { padding: 70px var(--gutter) 80px; }
.about-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.about-inner h2 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 24px;
}
.about-statement {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 28px;
}
.about-credit {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 22px;
  letter-spacing: 0.04em;
}
.about-credit strong {
  color: var(--text);
  font-weight: 500;
}
.contact-link {
  display: inline-block;
  color: var(--accent);
  font-size: 15px;
  border-bottom: 1px solid var(--accent-dim);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}
.contact-link:hover { border-color: var(--accent); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}
.footer-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}
.footer-socials a {
  color: var(--muted);
  display: inline-flex;
  transition: color 0.15s ease;
}
.footer-socials a:hover { color: var(--accent); }

@media (max-width: 520px) {
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
}
