/* =========================================================
   Madesclaire Design — design tokens taken from the original site
   bg #0e0e0e · muted #bdbdbd · border #292929 · accent #ff9f40
   ========================================================= */

:root {
  --bg: #0e0e0e;
  --bg-lift: #121212;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.065);
  --border: #292929;
  --border-soft: rgba(255, 255, 255, 0.09);

  --text: #ffffff;
  --muted: #bdbdbd;
  --dim: #8a8a8a;

  --accent: #ff9f40;
  --accent-soft: rgba(255, 159, 64, 0.2);
  --green: #80ffae;

  --display: "Inter", "Inter Display", system-ui, -apple-system, sans-serif;
  --ui: "Geist", "Inter", system-ui, -apple-system, sans-serif;

  --wrap: 1120px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
/* Icons are drawn with strokes only — never let them fill solid black. */
svg [stroke]:not([fill]) { fill: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #1a1a1a; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------------- ambience ---------------- */

.grain {
  position: fixed;
  inset: -50%;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  top: -320px;
  left: 50%;
  width: 1100px;
  height: 700px;
  margin-left: -550px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(closest-side, rgba(255, 159, 64, 0.075), transparent 72%);
  filter: blur(10px);
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}
.wrap-narrow { max-width: 800px; }

/* ---------------- sticky dock nav ---------------- */

.dock {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translate(-50%, -140%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 6px 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s ease;
}
.dock.is-on { transform: translate(-50%, 0); opacity: 1; }

.dock a {
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.28px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.dock a:hover { color: #fff; background: var(--surface); }
.dock a.is-active { color: #fff; background: var(--surface-2); }

.dock-mark {
  display: grid;
  place-items: center;
  padding: 6px !important;
}
.dock-cta {
  background: #fff !important;
  color: #1a1a1a !important;
  padding: 8px 16px !important;
}
.dock-cta:hover { background: #e9e9e9 !important; }

@media (max-width: 820px) {
  .dock a:not(.dock-cta):not(.dock-mark) { display: none; }
}

/* ---------------- top bar ---------------- */

.topbar {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 26px 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  transition: transform 0.6s var(--ease);
}
.mark:hover { transform: rotate(90deg); }

/* ---------------- language switcher ---------------- */

.langs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.langs a {
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dim);
  transition: color 0.2s, background 0.2s;
}
.langs a:hover { color: #fff; background: rgba(255, 255, 255, 0.05); }
.langs a.is-current {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.langs-footer a { font-size: 13.5px; padding: 6px 13px; }

.brand { text-align: right; }
.brand-name {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .topbar { padding: 20px 22px 0; }
  .brand-name { font-size: 22px; }
}

@media (max-width: 380px) {
  .brand-name { font-size: 19px; }
}

/* =========================================================
   HERO — recreated 1:1 from the original
   ========================================================= */

.hero {
  position: relative;
  z-index: 1;
  min-height: 720px;
  display: grid;
  /* minmax(0,1fr) stops the fixed-width ticker from widening the track. */
  grid-template-columns: minmax(0, 1fr);
  place-items: center;
  padding: 24px 24px 80px;
}

.hero-inner {
  width: 100%;
  min-width: 0;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* payment notification ticker */
.ticker {
  width: min(475px, 100%);
  height: 276px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(rgba(0, 0, 0, 0) 0%, #000 30%, #000 70%, rgba(0, 0, 0, 0) 100%);
}

.ticker-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: roll 30s linear infinite;
  will-change: transform;
}

@keyframes roll {
  from { transform: translateY(0); }
  to   { transform: translateY(calc(-1 * var(--half, 50%))); }
}

.note {
  flex: none;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 458px;
  height: 92px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.note-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--i, #333);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.note-body { flex: 1; min-width: 0; display: block; }

.note-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.note-app {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.note-time { flex: none; font-size: 14px; color: #8f8f8f; }
.note-text {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  color: #c9c9c9;
  text-align: left;
}
.note-text b { color: #fff; font-weight: 600; }

/* headline */
.hero-title {
  max-width: 800px;
  font-size: 56px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #fff;
}

.hero-sub {
  margin-top: 12px;
  max-width: 640px;
  font-size: 20px;
  line-height: 28px;
  color: var(--muted);
}

.hero-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.rating {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 15px;
  color: var(--muted);
}
.rating b { color: #fff; font-weight: 600; }
.stars { display: flex; gap: 2px; }
.rating-label { color: var(--dim); }

@media (max-width: 900px) {
  .hero { min-height: 0; padding-top: 12px; }
  .hero-br { display: none; }
  .hero-title { font-size: clamp(34px, 8.4vw, 50px); line-height: 1.02; }
  .hero-sub { font-size: 17px; line-height: 25px; }
  .ticker { height: 220px; }
  .note { height: auto; min-height: 82px; gap: 12px; padding: 14px 16px; }
  .note-icon { width: 38px; height: 38px; border-radius: 10px; }
  .note-app { font-size: 15.5px; }
  .note-time { font-size: 13px; }
  .note-text { font-size: 14.5px; }
}

@media (max-width: 420px) {
  .note-app { font-size: 14.5px; }
  .note-text { font-size: 13.5px; }
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.64px;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-ico { flex: none; }

.btn-primary {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
}
.btn-primary:hover { background: #ededed; }

.btn-ghost {
  background: #0d0d0d;
  color: #fff;
  border-color: var(--border);
}
.btn-ghost:hover { background: #171717; border-color: #3a3a3a; }

.btn-sm { padding: 11px 18px; font-size: 15px; }
.btn-block { display: flex; justify-content: center; width: 100%; }

/* =========================================================
   SECTIONS
   ========================================================= */

.section { padding: 118px 0; position: relative; z-index: 1; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018) 12%, rgba(255, 255, 255, 0.018) 88%, transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.head { max-width: 720px; margin-bottom: 56px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 13px;
  border: 1px solid var(--accent-soft);
  border-radius: 999px;
  background: rgba(255, 159, 64, 0.07);
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.head h2, .cta h2 {
  font-size: clamp(30px, 4.1vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.lede {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
}

@media (max-width: 720px) {
  .section { padding: 78px 0; }
  .head { margin-bottom: 40px; }
  .lg { display: none; }
}

/* ---------------- positioning strip ---------------- */

.strip { padding: 64px 0; position: relative; z-index: 1; }
.strip-lead {
  max-width: 780px;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #e6e6e6;
}
.strip-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.strip-stats li {
  background: var(--bg);
  padding: 26px 22px;
}
.strip-stats b {
  display: block;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--accent);
}
.strip-stats span {
  display: block;
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--dim);
}

@media (max-width: 900px) { .strip-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .strip-stats { grid-template-columns: 1fr; } }

/* ---------------- service cards ---------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.card:hover {
  border-color: #3d3d3d;
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
}

.card-ico {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid var(--accent-soft);
  border-radius: 13px;
  background: rgba(255, 159, 64, 0.09);
  color: var(--accent);
}

.card h3 { font-size: 22px; letter-spacing: -0.025em; }
.card p { margin-top: 12px; font-size: 16px; line-height: 1.62; color: var(--muted); }

.ticks { margin-top: 20px; display: grid; gap: 11px; }
.ticks li {
  position: relative;
  padding-left: 27px;
  font-size: 15.5px;
  line-height: 1.5;
  color: #d2d2d2;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 159, 64, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m5 12.5 4.5 4.5L19 7.5' stroke='%23ff9f40' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px no-repeat;
}

@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } .card { padding: 26px; } }

/* ---------------- conversion section ---------------- */

.conv {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.principles { margin-top: 34px; display: grid; gap: 22px; }
.principles li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  border-left: 2px solid rgba(255, 159, 64, 0.28);
}
.principles b { display: block; color: #fff; font-weight: 600; letter-spacing: -0.015em; }

.conv-visual { position: sticky; top: 110px; }

.flowcard {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #101010;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.flowcard-head {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}
.flowcard-head .dot { width: 9px; height: 9px; border-radius: 50%; background: #303030; }
.flowcard-title {
  margin-left: 8px;
  font-family: var(--ui);
  font-size: 13px;
  color: var(--dim);
}

.flow { padding: 26px 24px; display: grid; gap: 4px; }
.flow-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding: 12px 0;
}
.flow-step::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 44px;
  bottom: -6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 159, 64, 0.45), rgba(255, 159, 64, 0.12));
}
.flow-step:last-child::after { display: none; }

.flow-node {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 159, 64, 0.35);
  background: rgba(255, 159, 64, 0.16);
  color: #ffc48a;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
}
.flow-step.is-win .flow-node { background: var(--green); border-color: var(--green); }
.flow-step b { display: block; font-size: 16.5px; letter-spacing: -0.015em; }
.flow-step span { display: block; margin-top: 3px; font-size: 14.5px; line-height: 1.5; color: var(--dim); }
.flow-step.is-win b { color: var(--green); }

@media (max-width: 940px) {
  .conv { grid-template-columns: 1fr; gap: 44px; }
  .conv-visual { position: static; }
}

/* ---------------- case study ---------------- */

.case {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

.case-media { display: grid; place-items: center; }

.phone {
  width: 258px;
  padding: 10px;
  border: 1px solid #2e2e2e;
  border-radius: 40px;
  background: linear-gradient(160deg, #1c1c1c, #0f0f0f);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}
.phone-screen {
  border-radius: 31px;
  background: #0b0b0b;
  padding: 14px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}
.ph-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ui);
  font-size: 12px;
  color: #cfcfcf;
  padding: 2px 4px 4px;
}
.ph-sig { width: 26px; height: 8px; border-radius: 3px; background: #3a3a3a; }
.ph-hero {
  padding: 18px 16px 20px;
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(255, 159, 64, 0.9), rgba(255, 122, 64, 0.55) 60%, rgba(60, 40, 25, 0.6));
  color: #14100c;
}
.ph-badge {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: 0.01em;
}
.ph-hero h4 { margin-top: 10px; font-size: 21px; letter-spacing: -0.02em; }
.ph-hero p { font-size: 12.5px; opacity: 0.75; }

.ph-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
}
.ph-thumb {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(140deg, #3a3a3a, #232323);
}
.ph-thumb.alt { background: linear-gradient(140deg, #4a3524, #262019); }
.ph-row b { display: block; font-size: 13px; letter-spacing: -0.01em; }
.ph-row span { display: block; font-size: 11.5px; color: var(--dim); }

.ph-cta {
  margin-top: 2px;
  padding: 12px;
  border-radius: 14px;
  background: #fff;
  color: #131313;
  text-align: center;
  font-family: var(--ui);
  font-size: 13.5px;
  font-weight: 500;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(128, 255, 174, 0.25);
  background: rgba(128, 255, 174, 0.08);
  font-family: var(--ui);
  font-size: 12.5px;
  color: var(--green);
}
.case-copy h3 { margin-top: 16px; font-size: clamp(24px, 3vw, 30px); letter-spacing: -0.03em; }
.case-copy p { margin-top: 14px; font-size: 16.5px; line-height: 1.65; color: var(--muted); }
.case-note { font-size: 14.5px !important; color: var(--dim) !important; }
.case-meta { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.case-meta span {
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--ui);
  font-size: 13px;
  color: #cbcbcb;
}
.case-copy .btn { margin-top: 26px; }

@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 36px; padding: 26px; }
}

/* next-up card */
.next-card {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 36px 44px;
  border: 1px dashed #333;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.015);
}
.next-card h3 { font-size: 24px; letter-spacing: -0.03em; }
.next-card p { margin-top: 10px; max-width: 560px; font-size: 16px; color: var(--muted); }

@media (max-width: 640px) { .next-card { padding: 28px 24px; } }

/* ---------------- process ---------------- */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step {
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.step:hover { border-color: #3d3d3d; transform: translateY(-3px); }
.step-n {
  display: block;
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.step h3 { margin-top: 16px; font-size: 22px; letter-spacing: -0.025em; }
.step p { margin-top: 12px; font-size: 16px; line-height: 1.62; color: var(--muted); }

@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- pricing ---------------- */

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.022);
}
.plan-featured {
  border-color: rgba(255, 159, 64, 0.4);
  background: linear-gradient(180deg, rgba(255, 159, 64, 0.075), rgba(255, 255, 255, 0.02) 45%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.plan-flag {
  position: absolute;
  top: -12px;
  left: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1200;
  font-family: var(--ui);
  font-size: 12.5px;
  font-weight: 600;
}
.plan h3 { font-size: 21px; letter-spacing: -0.025em; }
.plan-for { margin-top: 5px; font-size: 15px; color: var(--dim); }
.price { margin-top: 18px; display: flex; align-items: baseline; gap: 10px; }
.price-now {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-was {
  font-size: 20px;
  color: #6d6d6d;
  text-decoration: line-through;
}
.plan .ticks { margin-top: 0; flex: 1; }
.plan .btn { margin-top: auto; }

.plans-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--dim);
  text-align: center;
}

@media (max-width: 940px) { .plans { grid-template-columns: 1fr; } }

/* ---------------- testimonials (template) ---------------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
}
.quote blockquote { margin: 0; font-size: 16.5px; line-height: 1.62; color: #e0e0e0; }
.quote figcaption { margin-top: 20px; font-size: 14.5px; }
.quote figcaption b { display: block; }
.quote figcaption span { color: var(--dim); }

@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }

/* ---------------- FAQ ---------------- */

.faq { display: grid; gap: 12px; }

.faq details {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.022);
  overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq details[open] { border-color: #3a3a3a; background: rgba(255, 255, 255, 0.038); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  cursor: pointer;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: #fff; }

.chev {
  flex: none;
  position: relative;
  width: 15px;
  height: 15px;
}
.chev::before, .chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--accent);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.chev::before { width: 13px; height: 2px; }
.chev::after { width: 2px; height: 13px; }
details[open] .chev::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-body { padding: 0 24px 24px; }
.faq-body p { font-size: 16px; line-height: 1.65; color: var(--muted); max-width: 62ch; }

/* ---------------- CTA ---------------- */

.cta {
  position: relative;
  z-index: 1;
  padding: 130px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  background: radial-gradient(80% 130% at 50% 100%, rgba(255, 159, 64, 0.1), transparent 68%);
}
.cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
.cta-inner .lede { max-width: 560px; }
.cta-inner .hero-cta { margin-top: 34px; }

@media (max-width: 720px) { .cta { padding: 84px 0; } }

/* ---------------- footer ---------------- */

.footer {
  position: relative;
  z-index: 1;
  padding: 46px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.mark-sm { width: 26px; height: 26px; }
.footer-brand b { display: block; font-size: 16px; letter-spacing: -0.02em; }
.footer-brand span { display: block; font-size: 14px; color: var(--dim); }

.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a {
  font-family: var(--ui);
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.footer-legal { width: 100%; font-size: 13.5px; color: #666; }

/* ---------------- reveal ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .btn:hover, .card:hover, .step:hover { transform: none; }
}
