/* Al Towba demo — built on the adjoltz.com design system
   (tokens, phone mock geometry, ambient glows and grain lifted from the site) */

:root {
  --bg: #08090a;
  --bg2: #0b0c0e;
  --panel: #101113;
  --panel2: #16181b;
  --line: rgba(255, 255, 255, 0.08);
  --line2: rgba(255, 255, 255, 0.15);

  --c-head: #f5f7f7;
  --c-text: #bcc3c7;
  --c-mut: #828a8f;
  --c-dim: #5d646a;

  --brand: #25d366;
  --brand2: #3ee382;
  --teal: #14b88c;
  --gold: #f4c95d;

  --radius: 16px;
  --radius-lg: 22px;
  --radius-sm: 11px;
  --max: 1120px;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --display: 'Inter Tight', var(--font);

  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));

  /* WhatsApp dark, the real values */
  --wa-bg: #0b141a;
  --wa-head: #202c33;
  --wa-in: #202c33;
  --wa-out: #005c4b;
  --wa-txt: #e9edef;
  --wa-sub: #8696a0;
  --wa-link: #53bdeb;
}

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--c-text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.011em;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ambient glows */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 80% -140px, rgba(37, 211, 102, 0.11), transparent 60%),
    radial-gradient(720px 520px at 6% 6%, rgba(20, 184, 140, 0.07), transparent 55%);
}

/* film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--c-head);
  line-height: 1.13;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.1rem, 6.6vw, 3.6rem); font-weight: 800; line-height: 1.05; }
h2 { font-size: clamp(1.55rem, 4.4vw, 2.3rem); }
h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.3; }
p { color: var(--c-mut); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
strong { color: var(--c-head); font-weight: 600; }

.gx {
  background: linear-gradient(100deg, var(--brand2), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
@media (max-width: 480px) { .wrap { padding: 0 20px; } }

/* ------------------------------------------------------------------ header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 10, 0.66);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 14px; }
.logo { display: flex; align-items: center; gap: 11px; min-width: 0; }
.logo img { height: 26px; width: auto; }
.logo .div { width: 1px; height: 20px; background: var(--line2); flex: none; }
.logo .for {
  font-size: 0.74rem;
  color: var(--c-dim);
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo .for b { display: block; color: var(--c-text); font-weight: 600; font-size: 0.8rem; }
@media (max-width: 430px) { .logo .div, .logo .for { display: none; } }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--brand);
  color: #04231d;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.35), 0 14px 34px -14px rgba(37, 211, 102, 0.7);
}
.btn-primary:hover {
  background: var(--brand2);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(62, 227, 130, 0.5), 0 18px 44px -14px rgba(37, 211, 102, 0.85);
}
.btn-ghost { background: rgba(255, 255, 255, 0.04); color: var(--c-head); border-color: var(--line2); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(255, 255, 255, 0.28); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* -------------------------------------------------------------------- hero */
.hero { padding: 52px 0 30px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line2);
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.78rem;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.pill .g {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero h1 { max-width: 17ch; }
.hero p.sub { color: var(--c-text); font-size: 1.06rem; line-height: 1.6; margin: 18px 0 0; max-width: 54ch; }

.hero-stats { display: flex; gap: 34px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats .s b {
  font-family: var(--display);
  font-size: 1.55rem;
  color: var(--c-head);
  font-weight: 700;
  display: block;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.hero-stats .s span { font-size: 0.8rem; color: var(--c-dim); }

/* ------------------------------------------------------------------ layout */
.stage { padding: 26px 0 96px; }
.grid { display: grid; gap: 26px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1000px) { .grid { grid-template-columns: 372px 1fr; gap: 46px; } .stage { padding-bottom: 60px; } }

.col-phone { display: flex; flex-direction: column; align-items: center; }

/* ---------------------------------------------------------------- controls */
.controls { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; justify-content: center; }
.seg {
  display: inline-flex;
  padding: 3px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.seg button {
  border: 0;
  background: transparent;
  color: var(--c-mut);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.18s ease;
  letter-spacing: -0.01em;
  -webkit-tap-highlight-color: transparent;
}
.seg button[aria-pressed='true'] {
  background: var(--brand);
  color: #04231d;
  box-shadow: 0 6px 18px -8px rgba(37, 211, 102, 0.9);
}

/* ------------------------------------------------------- iPhone mock (adz) */
.phone {
  width: min(332px, 100%);
  aspect-ratio: 288 / 604;
  background: linear-gradient(155deg, #34383c, #15171a 42%, #26292d);
  border-radius: 52px;
  padding: 11px;
  position: relative;
  box-shadow:
    0 60px 110px -45px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -1px 1px rgba(0, 0, 0, 0.5);
}
.phone::before {
  content: '';
  position: absolute;
  left: -2px; top: 132px;
  width: 3px; height: 30px;
  border-radius: 3px;
  background: linear-gradient(#3b4045, #202327);
  box-shadow: 0 44px 0 #2a2e32, 0 100px 0 0 #2a2e32;
}
.phone::after {
  content: '';
  position: absolute;
  right: -2px; top: 182px;
  width: 3px; height: 62px;
  border-radius: 3px;
  background: linear-gradient(#3b4045, #202327);
}

.screen {
  position: absolute;
  inset: 11px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--wa-bg);
  display: flex;
  flex-direction: column;
}

.island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 26px;
  background: #000;
  border-radius: 16px;
  z-index: 6;
}
.island::after {
  content: '';
  position: absolute;
  right: 11px; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #19384a, #000 75%);
  box-shadow: inset 0 0 0 1px rgba(120, 180, 210, 0.18);
}

.statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px 6px;
  color: #eef6f1;
  background: var(--wa-head);
  flex: none;
}
.statusbar .t { font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.02em; }
.statusbar .ic { display: flex; align-items: center; gap: 5px; opacity: 0.95; }

.wa-header {
  background: var(--wa-head);
  color: var(--wa-txt);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 5px 12px 9px;
  flex: none;
}
.wa-header .back { color: var(--wa-sub); flex: none; }
.wa-avatar {
  width: 33px; height: 33px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: none;
}
.wa-avatar img { width: 20px; }
.wa-who { flex: 1; min-width: 0; line-height: 1.25; }
.wa-who strong {
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--wa-txt);
  min-width: 0;
}
.wa-who strong .nm { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.wa-who strong svg { flex: none; }
.wa-who span { font-size: 0.68rem; color: var(--wa-sub); display: block; }
.wa-actions { display: flex; gap: 15px; color: var(--wa-sub); flex: none; }

/* chat body */
.wa-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  padding: 10px 8px 6px;
  background-color: var(--wa-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='84' viewBox='0 0 84 84'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1.1' stroke-linecap='round' opacity='0.05'%3E%3Cpath d='M10 14c3-4 7-4 10 0'/%3E%3Ccircle cx='60' cy='18' r='4'/%3E%3Cpath d='M28 44h9M32.5 39.5v9'/%3E%3Cpath d='M64 52c2-3 5-3 7 0'/%3E%3Cpath d='M14 68c4-5 9-5 13 0'/%3E%3Ccircle cx='48' cy='72' r='3.4'/%3E%3Cpath d='M72 32v8'/%3E%3C/g%3E%3C/svg%3E");
  scroll-behavior: smooth;
}
/* WhatsApp stacks a short conversation at the bottom of the screen, not the top */
.wa-body::before { content: ''; flex: 1 1 auto; min-height: 0; }
.wa-body::-webkit-scrollbar { width: 4px; }
.wa-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.13); border-radius: 4px; }

.daystamp { text-align: center; margin: 2px 0 10px; }
.daystamp span {
  background: rgba(32, 44, 51, 0.92);
  color: var(--wa-sub);
  font-size: 0.63rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.row { display: flex; margin-bottom: 3px; }
.row.out { justify-content: flex-end; }
.row.spaced { margin-top: 8px; }

.msg {
  max-width: 84%;
  border-radius: 8px;
  padding: 6px 9px 5px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--wa-txt);
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.25);
  position: relative;
  word-wrap: break-word;
  letter-spacing: -0.005em;
  animation: pop 0.22s ease-out;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(6px) scale(0.985); }
  to { opacity: 1; transform: none; }
}
.msg.in { background: var(--wa-in); border-top-left-radius: 0; }
.msg.out { background: var(--wa-out); border-top-right-radius: 0; }
.msg .txt { white-space: pre-wrap; }
.msg strong { font-weight: 600; color: inherit; }

.meta {
  float: right;
  margin: 6px -2px -2px 8px;
  font-size: 0.6rem;
  color: rgba(233, 237, 239, 0.5);
  display: flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}
.meta svg { color: var(--wa-link); }

/* product image card */
.msg.card { padding: 4px 4px 5px; max-width: 78%; }
.msg.card img {
  border-radius: 6px;
  width: 100%;
  background: #10181d;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.msg.card .cap { padding: 7px 5px 0; font-size: 0.78rem; line-height: 1.45; }
.msg.card .cap b { font-weight: 600; }
.msg.card .cap small { color: var(--wa-sub); font-size: 0.68rem; display: block; margin-top: 3px; }

/* typing */
.typing { display: inline-flex; gap: 4px; padding: 5px 3px; }
.typing i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--wa-sub);
  animation: blink 1.3s infinite ease-in-out;
}
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes blink {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* Meta interactive reply buttons */
.replies { margin: 4px 0 10px; display: flex; flex-direction: column; gap: 2px; max-width: 84%; }
.replies button {
  width: 100%;
  background: var(--wa-in);
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--wa-link);
  font-family: var(--font);
  font-size: 0.79rem;
  font-weight: 500;
  padding: 9px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.replies button:first-child { border-radius: 8px 8px 0 0; border-top: 0; }
.replies button:last-child { border-radius: 0 0 8px 8px; }
.replies button:only-child { border-radius: 8px; }
.replies button:hover { background: #2a3942; }

/* composer */
.wa-input {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 8px 14px;
  background: var(--wa-bg);
  flex: none;
}
.wa-input .field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #2a3942;
  border-radius: 20px;
  padding: 7px 12px;
  min-width: 0;
}
.wa-input input {
  flex: 1;
  border: 0;
  outline: 0;
  font-family: var(--font);
  font-size: 0.84rem;
  color: var(--wa-txt);
  background: transparent;
  min-width: 0;
}
.wa-input input::placeholder { color: var(--wa-sub); }
.wa-input .send {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--brand);
  color: #04231d;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex: none;
  transition: transform 0.15s ease;
}
.wa-input .send:active { transform: scale(0.92); }

/* RTL */
.screen[dir='rtl'] .msg.in { border-top-left-radius: 8px; border-top-right-radius: 0; }
.screen[dir='rtl'] .msg.out { border-top-right-radius: 8px; border-top-left-radius: 0; }
.screen[dir='rtl'] .meta { float: left; margin: 6px 8px -2px -2px; }

.underphone {
  margin: 16px auto 0;
  max-width: 330px;
  text-align: center;
  font-size: 0.76rem;
  color: var(--c-dim);
  line-height: 1.6;
}

/* ------------------------------------------------------------- side panels */
.panel {
  background: var(--panel);
  background-image: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}
.panel > h2 { font-size: 1.28rem; margin-bottom: 4px; }
.panel .sub { color: var(--c-mut); font-size: 0.87rem; line-height: 1.6; margin: 0 0 18px; }

.caps { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .caps { grid-template-columns: 1fr 1fr; } }
.cap-item { display: flex; gap: 12px; align-items: flex-start; }
.cap-ico {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: var(--brand2);
}
.cap-item h3 { margin: 1px 0 3px; }
.cap-item p { margin: 0; font-size: 0.82rem; color: var(--c-mut); line-height: 1.55; }

/* CRM */
.crm-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.crm-head h2 { font-size: 1.28rem; }
.crm-badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line2);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.crm-badge.on {
  color: #04231d;
  background: var(--brand);
  border-color: transparent;
}

.crm-fields { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.crm-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  background: var(--panel2);
  padding: 11px 14px;
  align-items: center;
  font-size: 0.87rem;
}
.crm-row dt { color: var(--c-dim); font-size: 0.66rem; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 600; }
.crm-row dd { color: var(--c-dim); font-style: italic; }
.crm-row.filled dd { color: var(--c-head); font-style: normal; font-weight: 500; }
.crm-row.flash { animation: flash 1.2s ease-out; }
@keyframes flash {
  0% { background: rgba(37, 211, 102, 0.22); }
  100% { background: var(--panel2); }
}
.crm-note { font-size: 0.78rem; color: var(--c-dim); line-height: 1.6; margin: 14px 0 0; }

/* sticky CTA on mobile */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(8, 9, 10, 0), rgba(8, 9, 10, 0.95) 45%);
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.cta-bar .btn { pointer-events: auto; width: 100%; max-width: 420px; }
@media (min-width: 1000px) {
  .cta-bar { position: static; padding: 8px 0 0; background: none; justify-content: flex-start; }
  .cta-bar .btn { max-width: 300px; }
}

/* ------------------------------------------------------------- offer page */
.offer-wrap { max-width: 840px; margin: 0 auto; padding: 44px 24px 120px; }
@media (max-width: 480px) { .offer-wrap { padding: 32px 20px 120px; } }

.offer-wrap .intro {
  color: var(--c-text);
  font-size: 1.03rem;
  line-height: 1.65;
  margin-top: 18px;
  max-width: 56ch;
}

.price-card {
  background: var(--panel);
  background-image: linear-gradient(150deg, rgba(37, 211, 102, 0.12), rgba(255, 255, 255, 0.01) 55%);
  border: 1px solid rgba(37, 211, 102, 0.22);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: 28px 0 8px;
}
.price {
  font-family: var(--display);
  font-size: clamp(2.8rem, 11vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-head);
}
.price small { font-size: 0.3em; color: var(--brand2); letter-spacing: 0.06em; margin-left: 8px; font-weight: 600; }
.price-note { color: var(--c-text); font-size: 0.95rem; margin: 14px 0 0; line-height: 1.65; }

.sec { margin: 52px 0; padding-top: 44px; border-top: 1px solid var(--line); }
.sec:first-of-type { border-top: 0; padding-top: 0; }
.sec h2 { margin-bottom: 8px; }
.sec .sub { color: var(--c-mut); font-size: 0.98rem; line-height: 1.65; margin: 0 0 26px; max-width: 62ch; }

.deliver { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .deliver { grid-template-columns: 1fr 1fr; } }
.d-item {
  background: var(--panel);
  background-image: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.d-item h3 { margin: 1px 0 5px; }
.d-item p { margin: 0; font-size: 0.85rem; color: var(--c-mut); line-height: 1.6; }

.steps { list-style: none; counter-reset: s; }
.steps li {
  counter-increment: s;
  position: relative;
  padding: 0 0 26px 44px;
  border-left: 1px solid var(--line2);
  margin-left: 15px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  content: counter(s);
  position: absolute;
  left: -15px; top: -3px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--panel2);
  border: 1px solid var(--line2);
  color: var(--c-head);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.steps li:first-child::before {
  background: var(--brand);
  color: #04231d;
  border-color: transparent;
  box-shadow: 0 8px 22px -10px rgba(37, 211, 102, 0.9);
}
.steps h3 { margin: 3px 0 5px; font-size: 1rem; }
.steps p { margin: 0; font-size: 0.86rem; color: var(--c-mut); line-height: 1.65; }
.steps .when {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand2);
  margin-top: 8px;
}

.terms { display: grid; gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.term { background: var(--panel2); padding: 16px 18px; display: grid; grid-template-columns: 1fr; gap: 4px; }
@media (min-width: 620px) { .term { grid-template-columns: 190px 1fr; gap: 18px; align-items: baseline; } }
.term dt { font-size: 0.68rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--c-dim); font-weight: 600; }
.term dd { font-size: 0.92rem; line-height: 1.6; color: var(--c-text); }

.notpromise {
  background: rgba(244, 201, 93, 0.05);
  border: 1px solid rgba(244, 201, 93, 0.2);
  border-radius: var(--radius);
  padding: 22px;
}
.notpromise h2 { font-size: 1.2rem; margin-bottom: 4px; }
.notpromise ul { margin: 12px 0 0; padding-left: 18px; }
.notpromise li { font-size: 0.87rem; color: var(--c-text); line-height: 1.65; margin-bottom: 10px; }
.notpromise li::marker { color: var(--gold); }

.close { text-align: center; padding: 20px 0 0; }
.close p { color: var(--c-mut); font-size: 0.95rem; line-height: 1.65; max-width: 44ch; margin: 0 auto 22px; }
.close .btn { margin: 0 auto; }
.sig { margin-top: 20px; font-size: 0.8rem; color: var(--c-dim); }
