/* ============================================================
   Zimozo — inner pages. Same language as the landing page,
   but these scroll and carry real content.
   ============================================================ */

html.inner, html.inner body {
  height: auto;
  overflow: visible;
  overflow-x: hidden;
}

html.inner body {
  background: var(--bg);
  color: var(--text);
}

/* a still, dark ground instead of the video */
.inner-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1100px 620px at 50% -12%, rgba(60, 110, 220, 0.20), transparent 62%),
    radial-gradient(760px 500px at 88% 8%, rgba(180, 83, 26, 0.12), transparent 60%),
    #000;
  pointer-events: none;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(16px, 2.4vh, 28px) clamp(14px, 3vw, 32px) clamp(60px, 9vh, 110px);
}

/* the landing header re-used, but not full-height */
.inner .page { height: auto; overflow: visible; padding: 0; }
.inner .header { margin-bottom: clamp(34px, 6vh, 64px); }

/* ── page masthead ────────────────────────────────────────── */
.masthead { text-align: center; margin-bottom: clamp(30px, 5vh, 56px); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fa6c9;
}
.page-title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-weight: 400;
  color: #fff;
  font-size: clamp(30px, 5.4vw, 60px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.page-lede {
  max-width: 620px;
  margin: 16px auto 0;
  color: #d0d0d0;
  opacity: 0.8;
  font-size: clamp(14.5px, 1.5vw, 16.5px);
  line-height: 1.6;
}

/* ── section ──────────────────────────────────────────────── */
.section { margin-top: clamp(40px, 7vh, 78px); }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.section-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.02em;
  color: #fff;
}
.section-note { color: var(--muted); font-size: 13px; margin-left: auto; text-align: right; }

/* ── cards ────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 14px;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 18px 19px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  background: #fff;
  border-radius: 50%;
  color: #111;
  font-size: 14px;
}
.card-name {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  color: #fff;
}
.card-text {
  margin: 7px 0 0;
  color: #c2c2c2;
  font-size: 13.5px;
  line-height: 1.55;
  opacity: 0.85;
}
.card-price {
  margin-top: auto;
  padding-top: 13px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.card-price small { color: var(--muted); font-weight: 400; font-size: 12px; }

/* ── pricing plans ────────────────────────────────────────── */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
  gap: 14px;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
}
.plan.is-featured {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}
.plan-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 3px 9px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.plan-name {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: #fff;
}
.plan-price {
  margin: 14px 0 2px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1.1;
}
.plan-cycle { color: var(--muted); font-size: 12.5px; }
.plan-list {
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  color: #c2c2c2;
  font-size: 13.5px;
  line-height: 1.7;
}
.plan-list li::before { content: "·"; margin-right: 8px; color: #fff; }
.plan-cta {
  margin-top: auto;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  text-align: center;
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}
.plan-cta:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }
.plan.is-featured .plan-cta { background: #fff; color: #000; border-color: #fff; }

/* currency / cycle switch */
.switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  background: var(--pill-dark);
  border: 1px solid var(--trust-border);
  border-radius: 999px;
}
.switch button {
  padding: 7px 15px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--trust-text);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.switch button.is-on { background: #fff; color: #111; }
.switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

/* ── table ────────────────────────────────────────────────── */
.tablewrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
}
table.list { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 480px; }
table.list th, table.list td {
  padding: 11px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
table.list thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}
table.list tbody tr:last-child td { border-bottom: 0; }
table.list td.r, table.list th.r { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
table.list .nm { color: #fff; font-weight: 500; }
table.list .sub { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ── contact ──────────────────────────────────────────────── */
.offices { display: grid; grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); gap: 14px; }
.office { padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: 20px; }
.office h3 { margin: 0 0 4px; font-family: var(--font-sans); font-weight: 600; font-size: 17px; color: #fff; }
.office .where { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.office a { display: block; color: #fff; text-decoration: none; font-size: 15px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.office a:last-child { border-bottom: 0; }
.office a:hover { color: #8fc9ff; }
.office i { width: 22px; color: var(--muted); }

/* ── footer ───────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 26px clamp(14px, 3vw, 32px) 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .spacer { margin-left: auto; }

@media (max-width: 720px) {
  .section-head { flex-direction: column; gap: 4px; }
  .section-note { margin-left: 0; text-align: left; }
  /* the display face is wide; give long titles room rather than orphaning words */
  .page-title { font-size: clamp(25px, 7.4vw, 34px); letter-spacing: -0.065em; }
}
