/* ---------- Bento Grid ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 20px);
  margin-top: clamp(24px, 5vw, 40px);
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-tile);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.tile:hover { box-shadow: var(--shadow-tile-hover); }

.t-hero    { grid-column: span 8; min-height: 520px; padding: 0; display: flex; flex-direction: column; }
.t-auth    { grid-column: span 4; }
.t-process { grid-column: span 12; }
.t-secure  { grid-column: span 6; }
.t-live    { grid-column: span 6; }

@media (max-width: 980px) {
  .t-hero, .t-auth, .t-secure, .t-live { grid-column: span 12; }
  .t-hero { min-height: auto; }
}
/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 520px;
}
@media (max-width: 860px) { .hero { grid-template-columns: 1fr; } }

.hero-copy {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; z-index: 2;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--body);
  padding: 6px 10px; border: 1px solid var(--line); border-radius: 100px;
  background: var(--surface);
  width: fit-content;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--success);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 25%, transparent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, var(--success) 25%, transparent); }
  50%      { box-shadow: 0 0 0 6px color-mix(in srgb, var(--success) 5%, transparent); }
}

.hero-title {
  font-size: clamp(44px, 5.2vw, 64px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 24px 0 16px;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px; color: var(--body); max-width: 42ch;
  line-height: 1.5;
}

.trust-row {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px;
  font-size: 13px; color: var(--body);
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- Calculator card ---------- */
.calc-wrap {
  padding: 44px 44px 44px 0;
  display: flex; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 860px) { .calc-wrap { padding: 0 44px 44px; } }
.calc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  box-shadow:
    rgba(50,50,93,0.12) 0px 18px 36px -18px,
    rgba(0,0,0,0.06) 0px 6px 12px -6px;
  position: relative;
}
.calc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.calc-head h3 {
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em;
}
.calc-step {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; color: var(--muted);
  letter-spacing: 0.05em;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12px; color: var(--body); margin-bottom: 6px;
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.02em;
}
.input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s, background .15s;
  outline: none;
}
.input:focus {
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent);
}
.input::placeholder { color: var(--muted); }
.input.mono { font-family: 'Geist Mono', monospace; letter-spacing: 0.02em; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.calc-estimate {
  margin-top: 18px;
  padding: 14px 16px;
  background: var(--accent-weak-2);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.calc-estimate .label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--body);
}
.calc-estimate .amount {
  font-size: 24px; font-weight: 400; color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc .btn-primary { width: 100%; justify-content: center; margin-top: 16px; }

/* ---------- Ghost globe ---------- */
.globe {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}
.globe svg { width: 100%; height: 100%; }
.globe-dot {
  fill: var(--globe-dot);
  transition: fill .3s;
}
.globe-pin {
  fill: var(--globe-dot-strong);
  opacity: 0.9;
}
.globe-pulse {
  fill: none;
  stroke: var(--globe-dot-strong);
  stroke-width: 1.2;
  opacity: 0;
}

/* ---------- Authority tile ---------- */
.t-auth { display: flex; flex-direction: column; justify-content: space-between; }
.auth-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--body);
}
.auth-headline {
  font-size: 34px; font-weight: 300;
  letter-spacing: -0.028em; line-height: 1.05;
  margin-top: 16px;
}
.auth-headline .num {
  color: var(--accent); font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.auth-sub {
  margin-top: 14px; font-size: 14px; line-height: 1.55; color: var(--body);
}
.auth-footer {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.pow-by {
  font-size: 11px; color: var(--muted);
  font-family: 'Geist Mono', monospace;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pow-name {
  font-size: 14px; color: var(--ink); font-weight: 500;
  margin-top: 2px; letter-spacing: -0.01em;
}
.auth-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--accent); font-weight: 500;
}

/* ---------- Process tile ---------- */
.t-process { padding: clamp(24px, 5vw, 44px); }
.process-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 32px; gap: 20px;
}
.section-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--body);
}
.process-head h2 {
  font-size: 32px; font-weight: 300; letter-spacing: -0.025em;
  margin-top: 8px; max-width: 32ch;
}
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 32px; left: 8%; right: 8%; height: 1px;
  background: repeating-linear-gradient(
    to right, var(--line) 0 6px, transparent 6px 12px
  );
}
.step {
  padding: 0 20px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }
.step-icon {
  width: 64px; height: 64px;
  background: var(--accent-weak);
  border-radius: 12px;
  display: grid; place-items: center;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--accent) 15%, transparent);
}
.step-icon svg { width: 28px; height: 28px; }
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--ink); color: #fff;
  border-radius: 50%;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; font-weight: 500;
  display: grid; place-items: center;
}
.step h3 {
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p { font-size: 14px; line-height: 1.55; }

/* ---------- Security tile ---------- */
.t-secure .shield {
  display: inline-flex;
  width: 40px; height: 40px;
  background: var(--success-weak);
  border-radius: 10px;
  align-items: center; justify-content: center;
  color: var(--success-text);
  margin-bottom: 20px;
}
.t-secure h2 {
  font-size: 28px; font-weight: 300; letter-spacing: -0.025em;
  line-height: 1.1;
}
.t-secure h2 em {
  font-style: normal;
  color: var(--success-text);
  font-weight: 400;
}
.t-secure p { margin-top: 14px; font-size: 14px; line-height: 1.55; }
.fee-row {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.fee-label { font-size: 12px; color: var(--body); font-family: 'Geist Mono', monospace; }
.fee-val { font-size: 18px; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- Live tile ---------- */
.live-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.live-head h2 {
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
}
.live-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--success-text);
  padding: 4px 8px; background: var(--success-weak); border-radius: 100px;
}
.live-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success);
  animation: pulse 2.2s ease-in-out infinite;
}
.wins {
  display: flex; flex-direction: column; gap: 2px;
}
.win {
  display: grid; grid-template-columns: auto 1fr auto; gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.win:last-child { border-bottom: none; }
.win-route {
  font-family: 'Geist Mono', monospace;
  font-size: 13px; color: var(--ink); letter-spacing: 0.02em;
  font-weight: 500;
}
.win-meta { font-size: 12px; color: var(--muted); }
.win-amount {
  font-variant-numeric: tabular-nums;
  font-weight: 500; font-size: 15px;
  color: var(--success-text);
}
