:root {
  --off-white:   #F7F6F3;
  --white:       #FFFFFF;
  --ink-navy:    #0B1020;
  --deep-slate:  #151B2C;
  --violet:      #7B4DFF;
  --cobalt:      #256BFF;
  --teal:        #00C2A8;
  --soft-lilac:  #F2ECFF;
  --light-border:#E8E5DF;
  --gold:        #B5840F;
  --text-2:      #565B73;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-head:   'Space Grotesk', 'Inter', -apple-system, system-ui, sans-serif;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-soft: 0 12px 32px rgba(11, 16, 32, 0.08);
  --shadow-card: 0 8px 24px rgba(11, 16, 32, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--off-white);
  color: var(--ink-navy);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.imk-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.imk-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink-navy);
}

.imk-logo-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}
.imk-logo-bars span {
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--violet), var(--cobalt));
}
.imk-logo-bars span:nth-child(1) { height: 60%; }
.imk-logo-bars span:nth-child(2) { height: 100%; }
.imk-logo-bars span:nth-child(3) { height: 40%; }
.imk-logo-bars span:nth-child(4) { height: 80%; }
.imk-logo-bars span:nth-child(5) { height: 55%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--cobalt));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink-navy);
  border-color: var(--light-border);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  padding: 12px 8px;
}
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet);
  background: var(--soft-lilac);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--ink-navy);
}

.hero p.sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  margin: 0 0 30px;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .card-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle at 35% 30%, var(--soft-lilac), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 340px;
  filter: drop-shadow(0 20px 40px rgba(11,16,32,.12));
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink-navy);
}

.section-head p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--soft-lilac);
  color: var(--violet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink-navy);
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  background: var(--soft-lilac);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--cobalt));
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  margin: 0 0 8px;
  color: var(--ink-navy);
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Beta section ---------- */
.beta-section {
  background: var(--deep-slate);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  max-width: 1072px;
  margin-left: auto;
  margin-right: auto;
}

.beta-section .section-eyebrow { color: var(--teal); }

.beta-copy h2 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--white);
  margin: 8px 0 14px;
}

.beta-copy p {
  color: #C7CBE0;
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 22px;
}

.beta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.beta-visual img {
  width: 130px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.35));
}

/* ---------- Footer ---------- */
footer {
  padding: 40px 0 56px;
  text-align: center;
}
footer .imk-logo { justify-content: center; margin-bottom: 10px; }
footer p {
  color: var(--text-2);
  font-size: 13.5px;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 24px; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
  .hero h1 { font-size: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .beta-section { grid-template-columns: 1fr; text-align: center; padding: 40px 26px; }
  .beta-visual { order: -1; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 30px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
}
