/* ── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #ffffff;
  --surface:   #f6f7fa;
  --surface-2: #eef0f4;
  --border:    #e3e6ec;
  --text:      #14171f;
  --muted:     #5b6472;
  --accent:    #4f46e5;
  --accent-2:  #0891b2;
  --green:     #2ea043;
  --radius:    10px;
  --max:       1120px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

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

/* ── Nav ────────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
.nav-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #fff;
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 26px; flex: 1; }
.nav-links a { color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  margin-left: auto;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .9; text-decoration: none !important; }

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { gap: 0; }
  .nav-cta { margin-left: auto; padding: 7px 14px; font-size: 13px; }
}
@media (max-width: 460px) {
  .nav-word { display: none; }
}

/* ── Layout helpers ─────────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section   { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  padding: 120px 24px 90px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(79,70,229,.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(8,145,178,.06) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent-2);
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: .4px;
}
.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 22px;
  color: var(--text);
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 38px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, border-color .15s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 4px 14px rgba(79,70,229,.22);
}
.btn-primary:hover { opacity: .88; }
.btn-outline  {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent-2); color: var(--accent-2); }

/* ── Section headings ───────────────────────────────────────────────────── */
.eyebrow {
  text-align: center;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header { text-align: center; margin-bottom: 8px; }
.section-header h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; color: var(--text); }
.section-header p  { color: var(--muted); font-size: 15px; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── About ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 1px 2px rgba(20,23,31,.04);
}
.value-card .icon { font-size: 24px; margin-bottom: 14px; }
.value-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.value-card p  { font-size: 14px; color: var(--muted); }

/* ── Product cards ──────────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(20,23,31,.04);
}
.product-card.featured { border-color: rgba(79,70,229,.35); }
.product-icon {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(79,70,229,.14), rgba(8,145,178,.12));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
}
.product-body { flex: 1; }
.product-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.product-status.live { background: rgba(34,197,94,.14); color: #15803d; }
.product-status.soon { background: var(--surface-2); color: var(--muted); }
.product-card h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.product-card p { font-size: 14px; color: var(--muted); margin-bottom: 16px; max-width: 520px; }
.product-card.soon { opacity: .7; }
.product-card.soon .product-icon { filter: grayscale(1); }

@media (max-width: 620px) {
  .product-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-box {
  max-width: 560px;
  margin: 48px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(20,23,31,.04);
}
.contact-box p { color: var(--muted); margin-bottom: 20px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px; }
.footer-meta { font-size: 12px; opacity: .65; max-width: 620px; margin: 6px auto 0; }

/* ── Page header (inner pages) ───────────────────────────────────────────── */
.page-header {
  padding: 72px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(79,70,229,.08) 0%, transparent 80%);
}
.page-header h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.page-header p  { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

.legal-layout { max-width: 760px; margin: 0 auto; padding: 48px 24px 80px; }
.legal-layout h2 { font-size: 20px; font-weight: 700; margin: 32px 0 14px; color: var(--text); }
.legal-layout p, .legal-layout li { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 10px; }
.legal-layout ul { padding-left: 20px; }
.legal-meta { font-size: 12px; color: var(--muted); opacity: .65; margin-bottom: 8px; }
