:root {
  --ink: #0f1b2d;
  --muted: #5a6b82;
  --gold: #c9932f;
  --gold-2: #f0cd7a;
  --accent: #d9a441;
  --line: rgba(15, 27, 45, 0.1);
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 30px 70px -40px rgba(15, 55, 120, 0.55);
  --wrap: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: 'Inter Variable', 'Segoe UI', system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #eef6ff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

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

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

.serif {
  font-family: 'Fraunces Variable', Georgia, 'Times New Roman', serif;
}

/* ---------- Background ---------- */
.sky {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: linear-gradient(165deg, #fbfdff 0%, #eaf4ff 42%, #d7e9ff 100%);
}

.sky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(255, 255, 255, 0.95), transparent 60%),
    radial-gradient(50% 45% at 88% 6%, rgba(214, 235, 255, 0.9), transparent 60%),
    radial-gradient(45% 40% at 50% 0%, rgba(240, 205, 122, 0.28), transparent 60%);
}

.sky .clouds {
  position: absolute;
  inset: auto 0 0 0;
  height: 52%;
  pointer-events: none;
}

.sky .clouds i {
  position: absolute;
  bottom: -40px;
  background: #fff;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.9;
}

.sky .clouds i:nth-child(1) {
  left: -60px;
  width: 420px;
  height: 220px;
  box-shadow: 120px -30px 0 -10px #fff, 260px 10px 0 -20px #f2f8ff;
}

.sky .clouds i:nth-child(2) {
  right: -80px;
  width: 520px;
  height: 240px;
  box-shadow: -140px -20px 0 -20px #fff, -40px 20px 0 -10px #eef6ff;
}

.sky .clouds i:nth-child(3) {
  left: 35%;
  width: 360px;
  height: 180px;
  bottom: -70px;
  box-shadow: 180px -20px 0 -20px #fff, -160px 10px 0 -30px #fff;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(15, 27, 45, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}

.medallion {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px -18px rgba(15, 55, 120, 0.45), inset 0 0 0 2px rgba(201, 147, 47, 0.55), 0 0 0 10px rgba(255, 255, 255, 0.55);
}

.medallion img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.medallion.sm {
  width: 44px;
  height: 44px;
  box-shadow: 0 10px 22px -14px rgba(15, 55, 120, 0.5), inset 0 0 0 2px rgba(201, 147, 47, 0.55);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #3a2a08;
  box-shadow: 0 22px 44px -22px rgba(201, 147, 47, 0.95);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 22px 44px -24px rgba(88, 101, 242, 0.95);
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: #22304a;
  border: 1px solid rgba(217, 164, 65, 0.35);
  box-shadow: 0 8px 20px -14px rgba(15, 55, 120, 0.5);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

/* ---------- Small utilities ---------- */
.muted {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Server picker (trial page) ---------- */
.guild-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.guild-option:hover {
  border-color: rgba(201, 147, 47, 0.5);
}

.guild-option.active {
  border-color: rgba(201, 147, 47, 0.8);
  background: linear-gradient(135deg, #fff9ea, #ffffff);
  box-shadow: 0 12px 26px -22px rgba(201, 147, 47, 0.95);
}

.guild-option input[type='radio'] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  flex: none;
}

.guild-option .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #3a2a08;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

.guild-option > span:last-child {
  flex: 1;
  min-width: 0;
}

.guild-option .s {
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Splash ---------- */
.splash {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: rise 0.9s ease both;
}

.splash .medallion {
  width: 168px;
  height: 168px;
  animation: float 6s ease-in-out infinite;
}

.splash .splash-title {
  display: block;
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: clamp(56px, 12vw, 104px);
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.splash .tagline {
  font-size: clamp(16px, 2.4vw, 22px);
  font-weight: 600;
  color: #1c2c44;
}

.splash .enter {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #3a2a08;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 22px 44px -22px rgba(201, 147, 47, 0.95);
  animation: pulse 2.6s ease-in-out infinite;
}

.splash .enter svg {
  width: 18px;
  height: 18px;
}

.splash .hint {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.splash-whole {
  position: absolute;
  inset: 0;
}

.enter-wrap {
  position: relative;
}

.enter-wrap::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(201, 147, 47, 0.4);
  opacity: 0;
  transition: opacity 0.2s ease;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 22px 44px -22px rgba(201, 147, 47, 0.95);
  }
  50% {
    box-shadow: 0 26px 54px -18px rgba(201, 147, 47, 0.95);
  }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(247, 251, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .name {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand .cat {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #22304a;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  padding: 76px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 16px 0 18px;
}

.hero .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted);
}

.hero-note b {
  color: var(--ink);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #7a5a12;
  background: linear-gradient(135deg, #f9e6ac, #ecc35f);
  border: 1px solid rgba(201, 147, 47, 0.55);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 12px 26px -18px rgba(201, 147, 47, 0.9);
}

.glass {
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.glass-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces Variable', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.glass ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.glass li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px -20px rgba(15, 55, 120, 0.5);
}

.row-ico,
.pill-ico {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-ico svg,
.pill-ico svg {
  width: 18px;
  height: 18px;
}

.row-text b {
  display: block;
  font-size: 14.5px;
}

.row-text em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
}

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

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

.section-head h2 {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  margin: 12px 0 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 24px 50px -40px rgba(15, 55, 120, 0.5);
}

.stat .value {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.stat .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

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

.card-soft {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 50px -38px rgba(15, 55, 120, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card-soft:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 60px -34px rgba(15, 55, 120, 0.55);
}

.card-soft .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.card-soft .icon svg {
  width: 24px;
  height: 24px;
}

.card-soft h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.card-soft p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Plugin showcase ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.chip-btn {
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: #22304a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 164, 65, 0.35);
  border-radius: 999px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.chip-btn.active,
.chip-btn:hover {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #3a2a08;
  border-color: transparent;
}

.plugin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plugin-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 44px -38px rgba(15, 55, 120, 0.5);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.plugin-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 52px -34px rgba(15, 55, 120, 0.5);
}

.plugin-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(217, 164, 65, 0.16);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.plugin-card .icon svg {
  width: 21px;
  height: 21px;
}

.plugin-card h3 {
  font-size: 16.5px;
}

.plugin-card .cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.plugin-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}

.plugin-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  color: #5a4614;
  background: rgba(240, 205, 122, 0.35);
  border-radius: 999px;
  padding: 4px 10px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 24px 50px -40px rgba(15, 55, 120, 0.5);
}

.step .num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--gold-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces Variable', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.step p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Trial / pricing ---------- */
.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.plan {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.plan.featured {
  background: linear-gradient(160deg, #fff9ea, #ffffff 60%);
  border: 1px solid rgba(201, 147, 47, 0.45);
  position: relative;
}

.plan .badge {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a5a12;
  background: linear-gradient(135deg, #f9e6ac, #ecc35f);
  border: 1px solid rgba(201, 147, 47, 0.55);
  border-radius: 999px;
  padding: 7px 14px;
  margin-bottom: 16px;
}

.plan h3 {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: 30px;
  margin-bottom: 6px;
}

.plan .price {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  margin: 8px 0 4px;
}

.plan .price small {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  font-family: 'Inter Variable', sans-serif;
}

.plan > p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.plan ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
}

.plan li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 18px;
  margin-top: 2px;
}

.plan .plan-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trial-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Demo preview ---------- */
.demo-preview {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 14px;
}

.mock-bar i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e2e8f0;
  display: inline-block;
}

.mock-bar i:nth-child(1) {
  background: #ff5f57;
}

.mock-bar i:nth-child(2) {
  background: #febc2e;
}

.mock-bar i:nth-child(3) {
  background: #28c840;
}

.mock-bar span {
  margin-left: 8px;
  font-size: 13px;
  color: var(--muted);
}

.mock-window {
  display: grid;
  grid-template-columns: 216px 1fr;
  min-height: 372px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f8fafc;
}

.mock-side {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 18px 16px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.mock-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.mock-logo svg {
  width: 18px;
  height: 18px;
}

.mock-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mock-nav span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 9px;
}

.mock-nav span svg {
  width: 15px;
  height: 15px;
}

.mock-nav span.active {
  background: #eff6ff;
  color: #1d4ed8;
}

.mock-main {
  padding: 18px;
  min-width: 0;
}

.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}

.mock-stat .k {
  display: block;
  font-size: 11.5px;
  color: var(--muted);
  margin-bottom: 4px;
}

.mock-stat .v {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.mock-stat .v.ok {
  color: #047857;
}

.mock-listcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-top: 14px;
  overflow: hidden;
}

.mock-listhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(15, 27, 45, 0.06);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.mock-list {
  list-style: none;
}

.mock-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(15, 27, 45, 0.05);
}

.mock-list li:last-child {
  border-bottom: 0;
}

.mock-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.mock-ico svg {
  width: 15px;
  height: 15px;
}

.mock-name {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.mock-name b {
  font-size: 13.5px;
  color: var(--ink);
}

.mock-name em {
  font-style: normal;
  font-size: 11.5px;
  color: var(--muted);
}

.mock-badge {
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}

.mock-badge.green {
  background: #ecfdf5;
  color: #047857;
}

.mock-badge.blue {
  background: #eff6ff;
  color: #1d4ed8;
}

/* ---------- FAQ ---------- */
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq details {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 20px 44px -40px rgba(15, 55, 120, 0.5);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  margin-bottom: 12px;
}

.faq p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(255, 249, 234, 0.9));
  border: 1px solid rgba(201, 147, 47, 0.35);
  border-radius: 28px;
  padding: 56px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-band h2 {
  font-family: 'Fraunces Variable', Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
}

.cta-band p {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
}

.cta-band .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* ---------- Flash ---------- */
.flash {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid transparent;
}

.flash svg {
  width: 18px;
  height: 18px;
}

.flash-success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.3);
  color: #065f46;
}

.flash-error {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #991b1b;
}

.flash-info {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  color: #1e40af;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 44px 0 60px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer .brand {
  margin-bottom: 10px;
}

.footer p {
  color: var(--muted);
  font-size: 14px;
  max-width: 360px;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #22304a;
  padding: 4px 0;
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-base {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards,
  .plugin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps,
  .stats-band {
    grid-template-columns: repeat(2, 1fr);
  }
  .trial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 28px 22px;
    background: rgba(247, 251, 255, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links a {
    padding: 8px 0;
    font-size: 16px;
  }
  .cards,
  .plugin-grid,
  .steps,
  .stats-band {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 48px;
  }
  .cta-band {
    padding: 40px 22px;
  }
  .footer-cols {
    gap: 32px;
  }
  .mock-window {
    grid-template-columns: 1fr;
  }
  .mock-side {
    display: none;
  }
  .mock-stats {
    grid-template-columns: 1fr;
  }
}

/* ---------- Splash -> homepage page transition ---------- */
/* Full-screen crossfade: the splash fades to the sky, then the page reveals. */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(165deg, #fbfdff 0%, #eaf4ff 42%, #d7e9ff 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.page-transition.is-covering {
  opacity: 1;
}

@keyframes page-reveal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

html.site-ready .page-transition {
  animation: page-reveal 0.6s ease forwards;
}

@keyframes splash-out {
  from {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  to {
    opacity: 0;
    transform: scale(1.12);
    filter: blur(8px);
  }
}

.splash.is-leaving {
  animation: splash-out 0.55s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  pointer-events: none;
}

.splash.is-leaving .splash-inner {
  animation: none;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
  transform: translateY(-22px) scale(0.98);
  opacity: 0;
}

/* Site pages ease in so the transition into /home feels continuous. */
@keyframes page-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.site-ready .nav,
html.site-ready header.hero,
html.site-ready section,
html.site-ready .cta-band,
html.site-ready footer.footer {
  animation: page-in 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

html.site-ready header.hero,
html.site-ready section:first-of-type {
  animation-delay: 0.04s;
}

@media (prefers-reduced-motion: reduce) {
  html.site-ready .nav,
  html.site-ready header.hero,
  html.site-ready section,
  html.site-ready .cta-band,
  html.site-ready footer.footer {
    animation: none;
  }
  .splash.is-leaving {
    animation: none;
    opacity: 0;
  }
  .splash.is-leaving .splash-inner {
    transform: none;
    opacity: 0;
  }
  html.site-ready .page-transition {
    animation: none;
    opacity: 0;
  }
  .page-transition {
    transition: none;
  }
}
