@charset "UTF-8";
:root {
  --midnight:   #0F1523;
  --amber:      #F5A623;
  --amber-lt:   #FFD060;
  --amber-dk:   #D4820A;
  --white:      #FFFFFF;
  --ivory:      #F5F4F0;
  --text:       #1A1A2E;
  --muted:      rgba(26, 26, 46, .52);
  --border:     rgba(26, 26, 46, .10);
  --success:    #2BAE66;
  --warning:    #F5A623;
  --danger:     #E2453C;
  --info:       #4A64B4;
  --max-w:      1100px;
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(26, 26, 46, .06);
  --shadow-md:  0 8px 24px rgba(26, 26, 46, .10);
  --shadow-lg:  0 18px 48px rgba(26, 26, 46, .14);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: 0;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.h1, h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.h1 em, h1 em {
  color: var(--amber);
  font-style: italic;
}

.h2, h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.h2 em, h2 em {
  color: var(--amber);
  font-style: italic;
}

.h3, h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

.h4, h4 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--amber);
  opacity: .6;
}

code, kbd, pre {
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 13px;
}

code {
  background: var(--ivory);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.wrap {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 7vh, 5.5rem) 0;
}

.section--dark {
  background: var(--midnight);
  color: var(--white);
}

.section--ivory {
  background: var(--ivory);
}

.grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.75rem);
}

.grid--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--4 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stack > * + * {
  margin-top: 1rem;
}

.stack-sm > * + * {
  margin-top: .5rem;
}

.stack-lg > * + * {
  margin-top: 2rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn:disabled, .btn.is-disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--amber);
  color: var(--midnight);
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(26, 26, 46, 0.15);
  color: var(--text);
  font-weight: 500;
}

.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--midnight);
}

.btn--ghost-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.btn--ghost-dark:hover {
  border-color: var(--amber);
  color: var(--white);
}

.btn--link {
  background: none;
  padding: 0;
  color: var(--amber);
  font-weight: 600;
}

.btn--link:hover {
  color: var(--amber-dk);
  text-decoration: underline;
}

.btn--sm {
  padding: 8px 16px;
  font-size: 12px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn--block {
  display: flex;
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.input, .select, .textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color .15s, box-shadow .15s;
}

.input::placeholder, .select::placeholder, .textarea::placeholder {
  color: var(--muted);
}

.input:focus, .select:focus, .textarea:focus {
  outline: 0;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

.input:disabled, .select:disabled, .textarea:disabled {
  background: var(--ivory);
  cursor: not-allowed;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  font-size: 12px;
  color: var(--muted);
}

.error {
  font-size: 12px;
  color: var(--danger);
}

.field--error .input, .field--error .select, .field--error .textarea {
  border-color: var(--danger);
}

.checkbox, .radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.checkbox input, .radio input {
  width: 16px;
  height: 16px;
  accent-color: var(--amber);
}

.switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch .track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 999px;
  transition: background .2s;
}

.switch .track::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: var(--shadow-sm);
}

.switch input:checked + .track {
  background: var(--amber);
}

.switch input:checked + .track::before {
  transform: translateX(18px);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  transition: transform .3s, box-shadow .3s;
}

.card--ivory {
  background: var(--ivory);
}

.card--dark {
  background: var(--midnight);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
}

.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.14);
  color: var(--amber-dk);
}

.badge--success {
  background: rgba(43, 174, 102, 0.14);
  color: var(--success);
}

.badge--danger {
  background: rgba(226, 69, 60, 0.14);
  color: var(--danger);
}

.badge--muted {
  background: var(--ivory);
  color: var(--muted);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--ivory);
  font-size: 14px;
  line-height: 1.55;
}

.alert--success {
  background: rgba(43, 174, 102, 0.08);
  border-color: rgba(43, 174, 102, 0.3);
  color: #196b3f;
}

.alert--danger {
  background: rgba(226, 69, 60, 0.08);
  border-color: rgba(226, 69, 60, 0.3);
  color: #8e261f;
}

.alert--info {
  background: rgba(74, 100, 180, 0.08);
  border-color: rgba(74, 100, 180, 0.3);
  color: #2c3f70;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(15, 21, 35, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(245, 166, 35, 0.1);
}

.nav__inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.nav__brand span {
  color: var(--amber);
}

.nav__links {
  display: none;
  gap: 2rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  transition: color .2s;
}

.nav__links a:hover {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.hidden {
  display: none !important;
}

.amber {
  color: var(--amber);
}

.serif {
  font-family: var(--font-serif);
}

.guide {
  padding-top: 80px;
}

.guide__header {
  background: var(--midnight);
  color: var(--white);
  padding: clamp(3rem, 8vh, 6rem) 0 clamp(2rem, 5vh, 4rem);
}

.guide__header h1 {
  color: var(--white);
}

.guide__header p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 60ch;
}

.guide__nav {
  position: sticky;
  top: 60px;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.guide__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 12px 0;
  font-size: 13px;
  color: var(--muted);
}

.guide__nav a {
  transition: color .2s;
}

.guide__nav a:hover {
  color: var(--amber);
}

.guide__section {
  padding: clamp(3rem, 6vh, 5rem) 0;
  border-bottom: 1px solid var(--border);
}

.guide__section > .wrap > h2 {
  margin-bottom: 2rem;
}

.swatch {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.swatch__chip {
  height: 88px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.swatch__name {
  font-weight: 600;
  font-size: 14px;
}

.swatch__hex {
  font-family: 'SFMono-Regular', monospace;
  font-size: 12px;
  color: var(--muted);
}

.type-sample {
  padding: 1rem 0;
  border-bottom: 1px dashed var(--border);
}

.type-sample:last-child {
  border-bottom: 0;
}

.type-sample__meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.demo {
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin-bottom: .75rem;
}

.demo--dark {
  background: var(--midnight);
  color: var(--white);
}

/* ─── Email previews ─── */
.email-previews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 980px) {
  .email-previews {
    grid-template-columns: 1fr;
  }
}

.email-preview-card {
  border: 1px solid #E9E4DA;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 6px rgba(15, 21, 35, 0.04);
  display: flex;
  flex-direction: column;
}

.email-preview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  background: #FAFAF7;
  border-bottom: 1px solid #E9E4DA;
}

.email-preview-card__label {
  font-weight: 600;
  font-size: 14px;
  color: #0F1523;
}

.email-preview-card__key {
  font-size: 11px;
  color: #8A8A8A;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.email-preview-card__langs {
  display: flex;
  gap: .35rem;
  align-items: center;
}

.email-lang {
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .25rem .55rem;
  border: 1px solid #E5E2DC;
  background: #fff;
  border-radius: 5px;
  cursor: pointer;
  color: #6E6E6E;
  transition: all .15s;
}

.email-lang:hover {
  border-color: #F5A623;
  color: #0F1523;
}

.email-lang.active {
  background: #0F1523;
  color: #F5A623;
  border-color: #0F1523;
}

.email-open {
  font-size: 11px;
  font-weight: 600;
  margin-left: .35rem;
  color: #8A8A8A;
  text-decoration: none;
}

.email-open:hover {
  color: #B8741A;
}

.email-preview-frame {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #F4F1EC;
}

html {
  scroll-padding-top: 76px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(15, 21, 35, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 0.5px solid rgba(245, 166, 35, 0.1);
}

.site-nav__inner {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
}

.bb {
  width: 3.5px;
  border-radius: 2px;
}

.bb1 {
  height: 12px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .6;
}

.bb2 {
  height: 8px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .5;
}

.bb3 {
  height: 18px;
  background: linear-gradient(180deg, #fff 0%, #FFE580 14%, #F5A623 55%, #D4820A);
  filter: drop-shadow(0 0 4px rgba(245, 166, 35, 0.7));
}

.bb4 {
  height: 6px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .4;
}

.bb5 {
  height: 10px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .55;
}

.brand-word {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.brand-word span {
  color: var(--amber);
}

.brand-word sup {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  vertical-align: super;
}

.site-nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

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

.site-nav__links {
  display: flex;
  gap: 2rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.site-nav__links a {
  cursor: pointer;
  transition: color .2s;
}

.site-nav__links a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .site-nav__links {
    display: none;
  }
}

.site-nav__cta {
  display: inline-block;
  text-decoration: none;
  border: none;
  background: var(--amber);
  color: var(--midnight);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity .2s;
}

.site-nav__cta:hover {
  opacity: .88;
}

.hero {
  background: var(--midnight);
  min-height: calc(100vh - 60px);
  padding-top: 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 55% 50% at 80% 20%, rgba(245, 166, 35, 0.07) 0%, transparent 60%), radial-gradient(ellipse 40% 55% at 15% 80%, rgba(74, 100, 180, 0.05) 0%, transparent 60%);
}

.hero .wrap {
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  position: relative;
  z-index: 2;
}

.hero-inner {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .5s .1s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--amber);
  opacity: .6;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .6s .2s forwards;
}

.hero-h1 em {
  color: var(--amber);
  font-style: italic;
  display: block;
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 18px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp .6s .35s forwards;
}

.hero-btns {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .6s .5s forwards;
}

.btn-primary {
  background: var(--amber);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 7px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
  border: 0;
  font-family: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.45);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 7px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: inline-block;
  font-family: inherit;
}

.btn-ghost:hover {
  border-color: rgba(245, 166, 35, 0.4);
  color: #fff;
}

.stats {
  background: #fff;
  padding: clamp(3.5rem, 7vh, 5.5rem) 0;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

@media (max-width: 767px) {
  .stats-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(52px, 5.5vw, 80px);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.stat-num .sfx {
  font-family: var(--font-serif);
  font-size: .42em;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.4;
}

.science-note {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -.01em;
}

.science-note a {
  color: var(--amber);
  font-weight: 600;
  white-space: nowrap;
  transition: color .2s;
}

.science-note a:hover {
  color: var(--midnight);
}

.how-it-works {
  background: #fff;
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::before {
  content: '';
  width: 18px;
  height: 1.5px;
  background: var(--amber);
}

.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}

.section-sub {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--muted);
  line-height: 1.7;
  max-width: 34ch;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: clamp(2.5rem, 4vh, 4rem);
}

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

.step-card {
  background: var(--ivory);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.09);
}

.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: calc(-1 * clamp(.6rem, 1.2vw, 1rem));
  top: 2.5rem;
  font-size: 20px;
  color: rgba(245, 166, 35, 0.4);
  z-index: 2;
}

@media (max-width: 767px) {
  .step-card:not(:last-child)::after {
    display: none;
  }
}

.step-num-bg {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: rgba(26, 26, 46, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-num-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .375rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .625rem;
  line-height: 1.2;
}

.step-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--muted);
  line-height: 1.7;
}

.why-big5 {
  background: var(--midnight);
  padding: clamp(4rem, 8vh, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.why-big5::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.07) 0%, transparent 60%);
  filter: blur(60px);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .why-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.why-h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}

.why-h2 em {
  color: var(--amber);
  font-style: italic;
}

.why-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.why-quote {
  border-left: 3px solid var(--amber);
  padding-left: 1.25rem;
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 19px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.why-quote cite {
  display: block;
  margin-top: .625rem;
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.32);
}

.why-facts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.375rem 1.5rem;
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  transition: border-color .25s;
}

.fact-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--amber);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--amber);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
  margin-bottom: .375rem;
}

.fact-title {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: #fff;
  margin-bottom: .3rem;
  line-height: 1.3;
}

.fact-desc {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

.preview {
  background: var(--ivory);
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.preview-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  align-items: start;
}

@media (max-width: 767px) {
  .preview-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.preview-text {
  padding-right: clamp(1.5rem, 3vw, 3rem);
  padding-top: clamp(1rem, 2vh, 2rem);
}

.preview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: start;
}

@media (max-width: 767px) {
  .preview-cards {
    grid-template-columns: 1fr;
  }
}

.pcard {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.1);
  background: #fff;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.07);
  transition: transform .25s, box-shadow .25s;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
}

.pcard-head {
  background: var(--midnight);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pcard-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.pcard__badge {
  background: var(--amber);
  color: var(--midnight);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.pcard-body {
  padding: 14px 16px;
}

.profile-name {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
}

.profile-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.bar-row {
  margin-bottom: 8px;
}

.bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(26, 26, 46, 0.38);
  margin-bottom: 3px;
}

.bar-track {
  height: 5px;
  border-radius: 3px;
  background: rgba(26, 26, 46, 0.07);
}

.bar-fill {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--amber-lt), var(--amber));
}

.blur-area {
  filter: blur(4px);
  opacity: .35;
  pointer-events: none;
}

.lock-row {
  padding: 0 16px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lock-text {
  font-size: 12px;
  color: rgba(26, 26, 46, 0.35);
}

.reviews {
  background: #fff;
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.reviews-scroll-outer {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
  overflow: visible;
}

.reviews-header {
  margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.reviews-scroll {
  display: flex;
  gap: clamp(0.875rem, 1.5vw, 1.25rem);
  overflow-x: auto;
  padding-bottom: .75rem;
  margin-right: -5vw;
  padding-right: 5vw;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.reviews-scroll:active {
  cursor: grabbing;
}

.reviews-scroll::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  min-width: clamp(260px, 28vw, 320px);
  max-width: clamp(260px, 28vw, 320px);
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: transform .25s, box-shadow .25s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.08);
}

.review-stars {
  color: var(--amber);
  font-size: 12px;
  margin-bottom: .875rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: clamp(14px, 1.1vw, 16px);
  font-style: italic;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #FFF8EC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--amber);
}

.review-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.review-role {
  font-size: 13px;
  color: var(--muted);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .reviews-scroll {
    margin: 0 24px;
    padding: 0 0 .75rem;
  }
  .review-card {
    min-width: calc(100% - 48px);
    max-width: calc(100% - 48px);
  }
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .875rem 0 0;
}

.dots {
  display: none;
}

@media (max-width: 768px) {
  .dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

.dot {
  height: 7px;
  width: 7px;
  border-radius: 4px;
  background: rgba(26, 26, 46, 0.15);
  transition: background .25s, width .25s;
  cursor: pointer;
  flex-shrink: 0;
}

.dot.active {
  background: var(--amber);
  width: 20px;
}

.reviews-nav {
  display: none;
}

@media (min-width: 769px) {
  .reviews-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
}

.reviews-nav__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.reviews-nav__btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--text);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reviews-nav__btn:hover:not(:disabled) {
  background: var(--ivory);
  border-color: var(--amber);
}

.reviews-nav__btn:hover:not(:disabled) svg {
  stroke: var(--amber);
}

.reviews-nav__btn:disabled {
  opacity: .3;
  cursor: default;
}

.pricing {
  background: var(--ivory);
  padding: clamp(4rem, 8vh, 7rem) 0;
}

.pricing-header {
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  align-items: stretch;
}

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

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

.plan-card {
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}

.plan-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.08);
}

.plan-card.featured {
  border: 2px solid var(--amber);
  background: #FFF8EC;
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--midnight);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .05em;
}

.plan-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: rgba(26, 26, 46, 0.4);
}

.plan-price {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--text);
}

.plan-price sub {
  font-family: var(--font-sans);
  font-size: .34em;
  font-weight: 400;
  vertical-align: baseline;
  color: rgba(26, 26, 46, 0.4);
}

.plan-price.free {
  font-size: clamp(26px, 2.8vw, 40px);
  color: rgba(26, 26, 46, 0.35);
}

.early {
  font-size: 10px;
  color: var(--amber);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: .03em;
}

.plan-desc {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  margin: 10px 0 14px;
  color: var(--muted);
}

.plan-divider {
  border: none;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  margin: 0 0 14px;
}

.plan-feature {
  font-size: clamp(13px, 1vw, 15px);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
  color: rgba(26, 26, 46, 0.75);
}

.plan-feature::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 4px;
  flex-shrink: 0;
}

.plan-feature.off {
  opacity: .35;
}

.plan-feature.off::before {
  background: rgba(26, 26, 46, 0.3);
}

.plan-spacer {
  flex: 1;
}

.plan-btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  letter-spacing: .03em;
  margin-top: 16px;
  font-family: inherit;
  border: 0;
}

.plan-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.plan-btn.outline {
  border: 1.5px solid rgba(26, 26, 46, 0.15);
  color: rgba(26, 26, 46, 0.5);
  background: transparent;
}

.plan-btn.primary {
  background: var(--amber);
  color: var(--midnight);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.plan-btn.dark {
  background: var(--midnight);
  color: #fff;
}

.footer-cta {
  background: var(--midnight);
  padding: clamp(5rem, 10vh, 8rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(245, 166, 35, 0.07) 0%, transparent 60%);
}

.footer-inner {
  position: relative;
  z-index: 2;
}

.footer-h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.footer-h2 em {
  color: var(--amber);
  font-style: italic;
}

.footer-sub {
  font-size: clamp(13px, 1.2vw, 16px);
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
  letter-spacing: .05em;
}

.site-legal {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1rem;
  font-size: 12px;
}

.site-legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color .2s;
}

.site-legal a:hover {
  color: var(--amber);
}

.site-legal span {
  color: rgba(255, 255, 255, 0.15);
  user-select: none;
}

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

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .2s;
}

.modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.modal {
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--midnight);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(245, 166, 35, 0.12);
  transform: translateY(12px);
  transition: transform .25s ease;
}

.modal-backdrop.is-open .modal {
  transform: translateY(0);
}

.modal::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 65%);
  filter: blur(40px);
  z-index: 0;
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  transition: opacity .2s;
}

.modal__close:hover {
  opacity: .7;
}

.modal__close svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.modal__body {
  padding: clamp(2rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.modal__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 1.75rem;
}

.modal__bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 18px;
}

.mb1 {
  height: 11px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .6;
  width: 3px;
  border-radius: 2px;
}

.mb2 {
  height: 7px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .5;
  width: 3px;
  border-radius: 2px;
}

.mb3 {
  height: 16px;
  background: linear-gradient(180deg, #fff 0%, #FFE580 14%, #F5A623 55%, #D4820A);
  filter: drop-shadow(0 0 3px rgba(245, 166, 35, 0.7));
  width: 3px;
  border-radius: 2px;
}

.mb4 {
  height: 5px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .4;
  width: 3px;
  border-radius: 2px;
}

.mb5 {
  height: 9px;
  background: linear-gradient(180deg, #fff, #F5A623 40%, #D4820A);
  opacity: .55;
  width: 3px;
  border-radius: 2px;
}

.modal__word {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
}

.modal__word span {
  color: var(--amber);
}

.modal__word sup {
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 400;
  vertical-align: super;
  color: rgba(255, 255, 255, 0.3);
}

.modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 1.25rem;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--amber);
}

.modal__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: modal-pulse 2s ease-in-out infinite;
}

@keyframes modal-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .55;
    transform: scale(0.8);
  }
}

.modal__h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  color: #fff;
  margin-bottom: .75rem;
}

.modal__h1 em {
  font-style: italic;
  color: var(--amber);
}

.modal__sub {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.modal__row {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.modal__input {
  flex: 1;
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.modal__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.modal__input:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
}

.modal__submit {
  border-radius: 10px;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 20px;
  cursor: pointer;
  white-space: nowrap;
  background: var(--amber);
  color: var(--midnight);
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.35);
  transition: opacity .2s, transform .2s;
}

.modal__submit:hover:not(:disabled) {
  opacity: .88;
  transform: translateY(-1px);
}

.modal__submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.modal__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.25rem 0;
}

.modal__check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: .875rem;
  cursor: pointer;
}

.modal__check input[type=checkbox] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--amber);
  cursor: pointer;
}

.modal__check a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__consent {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: .875rem;
  color: rgba(255, 255, 255, 0.45);
}

.modal__consent a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal__nospam {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  opacity: .45;
  color: rgba(255, 255, 255, 0.5);
  margin-top: .25rem;
}

.modal__nospam svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.modal__error {
  font-size: 13px;
  color: #ff8a8a;
  margin-bottom: .75rem;
  display: none;
}

.modal__error.is-visible {
  display: block;
}

.modal__success {
  display: none;
  text-align: center;
  padding: 1.5rem 0 .5rem;
}

.modal__success.is-visible {
  display: block;
}

.modal__success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  background: rgba(245, 166, 35, 0.14);
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal__success-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--amber);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal__success-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}

.modal__success-title em {
  font-style: italic;
  color: var(--amber);
}

.modal__success-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.learn-modal {
  width: 100%;
  max-width: 780px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--midnight);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(245, 166, 35, 0.12);
  transform: translateY(12px);
  transition: transform .25s ease;
}

.modal-backdrop.is-open .learn-modal {
  transform: translateY(0);
}

.learn-modal::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  border-radius: 20px;
  z-index: 0;
}

.learn-modal__glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

.learn-modal__inner {
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) #161D30;
  position: relative;
  z-index: 1;
}

.learn-modal__header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: rgba(15, 21, 35, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.15);
}

.learn-modal__logo {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #EEF0F6;
}

.learn-modal__logo span {
  color: var(--amber);
}

.learn-modal__close {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: #7A84A0;
  transition: opacity 0.2s;
  padding: 6px 0;
}

.learn-modal__close:hover {
  opacity: 0.6;
}

.learn-modal__close-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #EEF0F6;
}

.learn-modal__body {
  padding: 8px 32px 48px;
}

.learn-modal__rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 28px;
}

.learn-modal__hero {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 10px;
  color: #EEF0F6;
}

.learn-modal__hero em {
  font-style: italic;
  color: var(--amber);
}

.learn-modal__subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  color: #7A84A0;
}

.learn-modal__subtitle em {
  font-style: italic;
}

.learn-modal__section-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #EEF0F6;
}

.learn-modal__section-title::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

.learn-modal__section-text {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 28px;
  color: #9BA5C0;
}

.learn-modal__section-text strong {
  font-weight: 600;
  color: #EEF0F6;
}

.learn-modal__section-text em {
  font-style: italic;
}

.learn-modal__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 32px;
}

.learn-modal__stat {
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.18);
  color: #7A84A0;
}

.learn-modal__stat .num {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.2;
}

.learn-modal__divider {
  height: 1px;
  margin: 8px 0 28px;
  background: rgba(255, 255, 255, 0.07);
}

.learn-modal__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}

.learn-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--amber);
  color: #0F1523;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.learn-modal__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.learn-modal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  margin-top: 14px;
  margin-left: 24px;
  opacity: 0.55;
  transition: opacity 0.2s;
  color: #7A84A0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

.learn-modal__back:hover {
  opacity: 1;
}

@media (max-width: 600px) {
  .learn-modal__body {
    padding: 8px 20px 40px;
  }
  .learn-modal__header {
    padding: 16px 20px;
  }
  .learn-modal__stats {
    gap: 8px;
  }
}

.sample-report-modal {
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(245, 166, 35, 0.12);
  transform: translateY(12px);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}

.modal-backdrop.is-open .sample-report-modal {
  transform: translateY(0);
}

.sample-report-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(15, 21, 35, 0.72);
  backdrop-filter: blur(6px);
  transition: background .15s ease, transform .15s ease;
}

.sample-report-modal__close:hover {
  background: rgba(15, 21, 35, 0.88);
  transform: scale(1.04);
}

.sample-report-modal__close svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
}

.sample-report-modal__scroll {
  flex: 1;
  min-height: 0;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--amber) rgba(26, 26, 46, 0.08);
}

.sample-report-modal__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.admin-shell {
  --admin-bg:        #F7F8FB;
  --admin-surface:   #FFFFFF;
  --admin-sidebar:   #0F1523;
  --admin-sidebar-2: #1A2236;
  --admin-text:      #1A1A2E;
  --admin-muted:     rgba(26,26,46,.55);
  --admin-border:    rgba(26,26,46,.10);
  --admin-amber:     #F5A623;
  --admin-amber-lt:  #FFD060;
  --admin-success:   #2BAE66;
  --admin-warning:   #F5A623;
  --admin-danger:    #E2453C;
  --admin-info:      #4A64B4;
  --admin-radius:    8px;
  --admin-sidebar-w: 240px;
  --admin-sidebar-w-collapsed: 64px;
  font-family: 'Jost', system-ui, sans-serif;
  background: var(--admin-bg);
  color: var(--admin-text);
  min-height: 100vh;
  display: flex;
  -webkit-font-smoothing: antialiased;
}

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

.admin-shell a {
  color: var(--admin-amber);
  text-decoration: none;
}

.admin-shell a:hover {
  text-decoration: underline;
}

.admin-sidebar {
  width: var(--admin-sidebar-w);
  background: var(--admin-sidebar);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 50;
}

.admin-shell.collapsed .admin-sidebar {
  width: var(--admin-sidebar-w-collapsed);
}

.admin-sidebar-head {
  padding: 1.25rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  min-height: 62px;
}

.admin-shell.collapsed .admin-sidebar-head {
  padding: 0;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.admin-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  white-space: nowrap;
}

.admin-logo span {
  color: var(--admin-amber);
}

.admin-logo sup {
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  vertical-align: super;
}

.admin-shell.collapsed .admin-logo {
  display: none;
}

.admin-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--admin-amber) 0%, var(--admin-amber-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--admin-sidebar);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.admin-shell.collapsed .admin-logo-mark {
  display: none;
}

.admin-burger {
  margin-left: auto;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  flex-shrink: 0;
}

.admin-burger:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-burger svg {
  width: 16px;
  height: 16px;
}

.admin-shell.collapsed .admin-burger {
  margin-left: 0;
  padding: 10px;
}

.admin-nav {
  list-style: none;
  padding: .75rem 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.admin-nav-section {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  padding: 1.25rem 1.25rem .35rem;
}

.admin-shell.collapsed .admin-nav-section {
  display: none;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .65rem 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  border-left: 3px solid transparent;
  transition: all .15s;
  white-space: nowrap;
  text-decoration: none;
}

.admin-nav-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.admin-nav-item.active {
  color: #fff;
  background: rgba(245, 166, 35, 0.1);
  border-left-color: var(--admin-amber);
}

.admin-shell.collapsed .admin-nav-item {
  justify-content: center;
  padding: .65rem 0;
}

.admin-shell.collapsed .admin-nav-item span {
  display: none;
}

.admin-sidebar-foot {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1rem 1.25rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.admin-shell.collapsed .admin-sidebar-foot {
  padding: 1rem 0;
  text-align: center;
  font-size: 10px;
}

.admin-sidebar-foot a {
  color: rgba(255, 255, 255, 0.7);
}

.admin-sidebar-foot a:hover {
  color: var(--admin-amber);
}

.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: var(--admin-surface);
  border-bottom: 1px solid var(--admin-border);
  padding: 0 1.75rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 40;
}

.admin-crumbs {
  font-size: 14px;
  color: var(--admin-muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.admin-crumbs strong {
  color: var(--admin-text);
  font-weight: 600;
}

.admin-crumbs .sep {
  color: rgba(26, 26, 46, 0.25);
}

.admin-user {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-user .admin-user-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  background: transparent;
  border: 1px solid transparent;
  padding: .25rem .55rem .25rem .35rem;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  color: var(--admin-text);
  transition: background .15s, border-color .15s;
}

.admin-user .admin-user-btn:hover {
  background: rgba(15, 21, 35, 0.04);
  border-color: var(--admin-border);
}

.admin-user.open .admin-user-btn {
  background: rgba(15, 21, 35, 0.05);
  border-color: var(--admin-border);
}

.admin-user .admin-user-email {
  color: var(--admin-text);
  font-weight: 500;
  font-size: 13px;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-user .admin-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--admin-sidebar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
  flex-shrink: 0;
}

.admin-user .admin-user-avatar.lg {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

.admin-user .admin-user-caret {
  width: 11px;
  height: 11px;
  opacity: .55;
  transition: transform .15s;
}

.admin-user.open .admin-user-caret {
  transform: rotate(180deg);
}

.admin-user .admin-user-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 21, 35, 0.18);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .15s, transform .15s, visibility 0s linear .15s;
  z-index: 50;
}

.admin-user.open .admin-user-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .15s, transform .15s, visibility 0s;
}

.admin-user .admin-user-menu-head {
  display: flex;
  gap: .7rem;
  align-items: center;
  padding: .65rem .75rem .85rem;
  border-bottom: 1px solid var(--admin-border);
  margin-bottom: .4rem;
}

.admin-user .admin-user-menu-name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.2;
}

.admin-user .admin-user-menu-email {
  font-size: 11.5px;
  color: var(--admin-muted);
  margin-top: 2px;
  word-break: break-all;
}

.admin-user .admin-user-menu-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .75rem;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--admin-text);
  text-decoration: none;
  transition: background .12s;
}

.admin-user .admin-user-menu-item:hover {
  background: rgba(15, 21, 35, 0.05);
  text-decoration: none;
}

.admin-user .admin-user-menu-item svg {
  width: 15px;
  height: 15px;
  opacity: .65;
  flex-shrink: 0;
}

.admin-user .admin-user-menu-item.danger {
  color: var(--admin-danger);
}

.admin-user .admin-user-menu-item.danger:hover {
  background: rgba(226, 69, 60, 0.08);
}

.admin-user .admin-user-menu-sep {
  height: 1px;
  background: var(--admin-border);
  margin: .4rem 0;
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.admin-superbadge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--admin-amber);
  background: rgba(245, 166, 35, 0.12);
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.admin-superbadge svg {
  width: 12px;
  height: 12px;
}

.admin-content {
  padding: 1.75rem;
  flex: 1;
}

.admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.admin-page-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--admin-text);
}

.admin-page-title em {
  color: var(--admin-amber);
  font-style: italic;
}

.admin-page-sub {
  font-size: 14px;
  color: var(--admin-muted);
  margin-top: .25rem;
}

.admin-page-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.admin-card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  box-shadow: 0 1px 3px rgba(15, 21, 35, 0.03);
  overflow: hidden;
}

.admin-card-head {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-card-head h2 {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
}

.admin-card-body {
  padding: 1.25rem;
}

.admin-card-body.flush {
  padding: 0;
}

.admin-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 1.5rem;
}

.admin-stat {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.admin-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--admin-amber);
}

.admin-stat.success::before {
  background: var(--admin-success);
}

.admin-stat.danger::before {
  background: var(--admin-danger);
}

.admin-stat.info::before {
  background: var(--admin-info);
}

.admin-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--admin-muted);
  margin-bottom: .5rem;
}

.admin-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--admin-text);
}

.admin-stat-sub {
  font-size: 12px;
  color: var(--admin-muted);
  margin-top: .25rem;
}

.admin-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.admin-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--admin-border);
  transition: background .12s;
  text-decoration: none;
  color: inherit;
}

.admin-list-item:last-child {
  border-bottom: 0;
}

.admin-list-item:hover {
  background: rgba(245, 166, 35, 0.04);
  text-decoration: none;
}

.admin-list-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--admin-sidebar);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.admin-list-main {
  flex: 1;
  min-width: 0;
}

.admin-list-title {
  font-weight: 500;
  color: var(--admin-text);
}

.admin-list-sub {
  font-size: 12px;
  color: var(--admin-muted);
  margin-top: 2px;
}

.admin-list-aside {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.admin-list-time {
  font-size: 12px;
  color: var(--admin-muted);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--admin-border);
  color: var(--admin-text);
  white-space: nowrap;
}

.admin-badge.freemium {
  background: rgba(74, 100, 180, 0.1);
  color: var(--admin-info);
}

.admin-badge.basic {
  background: rgba(43, 174, 102, 0.12);
  color: var(--admin-success);
}

.admin-badge.standard {
  background: rgba(245, 166, 35, 0.14);
  color: var(--admin-amber);
}

.admin-badge.pro {
  background: linear-gradient(135deg, #0F1523 0%, #1A2236 100%);
  color: var(--admin-amber-lt);
}

.admin-badge.status-ready {
  background: rgba(43, 174, 102, 0.12);
  color: var(--admin-success);
}

.admin-badge.status-failed {
  background: rgba(226, 69, 60, 0.12);
  color: var(--admin-danger);
}

.admin-badge.status-generating, .admin-badge.status-pending {
  background: rgba(245, 166, 35, 0.14);
  color: var(--admin-amber);
}

.admin-badge.lang-en {
  background: rgba(74, 100, 180, 0.1);
  color: var(--admin-info);
}

.admin-badge.lang-et {
  background: rgba(43, 174, 102, 0.12);
  color: var(--admin-success);
}

.admin-badge.lang-ru {
  background: rgba(226, 69, 60, 0.1);
  color: var(--admin-danger);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th, .admin-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--admin-border);
}

.admin-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--admin-muted);
  background: rgba(247, 248, 251, 0.5);
}

.admin-table tbody tr:hover {
  background: rgba(245, 166, 35, 0.04);
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table a {
  color: var(--admin-text);
  font-weight: 500;
}

.admin-table a:hover {
  color: var(--admin-amber);
  text-decoration: none;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.admin-row.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.admin-row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.admin-row.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 700px) {
  .admin-row.cols-2, .admin-row.cols-3, .admin-row.cols-4 {
    grid-template-columns: 1fr;
  }
}

.admin-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
}

.admin-field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--admin-muted);
}

.admin-field input[type="text"],
.admin-field input[type="email"],
.admin-field input[type="number"],
.admin-field input[type="url"],
.admin-field input[type="password"],
.admin-field select,
.admin-field textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: .55rem .7rem;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  background: #fff;
  color: var(--admin-text);
  transition: border-color .15s, box-shadow .15s;
}

.admin-field textarea {
  resize: vertical;
  line-height: 1.5;
}

.admin-field textarea.admin-mono {
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.55;
  background: #fbfaf6;
}

.admin-field input:focus, .admin-field select:focus, .admin-field textarea:focus {
  outline: none;
  border-color: var(--admin-amber);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.admin-field .help {
  font-size: 12px;
  color: var(--admin-muted);
}

.admin-field .err {
  font-size: 12px;
  color: var(--admin-danger);
}

.admin-field input[type="checkbox"] {
  accent-color: var(--admin-amber);
  width: 16px;
  height: 16px;
}

.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 14px;
}

.admin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .55rem 1rem;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  background: #fff;
  color: var(--admin-text);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
}

.admin-btn:hover {
  border-color: var(--admin-amber);
  color: var(--admin-amber);
  text-decoration: none;
}

.admin-btn.primary {
  background: var(--admin-sidebar);
  color: #fff;
  border-color: var(--admin-sidebar);
}

.admin-btn.primary:hover {
  background: var(--admin-amber);
  border-color: var(--admin-amber);
  color: #fff;
}

.admin-btn.danger {
  color: var(--admin-danger);
  border-color: rgba(226, 69, 60, 0.3);
}

.admin-btn.danger:hover {
  background: var(--admin-danger);
  color: #fff;
  border-color: var(--admin-danger);
}

.admin-btn.sm {
  padding: .35rem .65rem;
  font-size: 12px;
}

.admin-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-msgs {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.admin-msg {
  padding: .65rem 1rem;
  border-radius: 6px;
  font-size: 13px;
  border-left: 3px solid var(--admin-amber);
  background: rgba(245, 166, 35, 0.06);
}

.admin-msg.success {
  background: rgba(43, 174, 102, 0.08);
  border-left-color: var(--admin-success);
}

.admin-msg.error {
  background: rgba(226, 69, 60, 0.08);
  border-left-color: var(--admin-danger);
}

.admin-msg.info {
  background: rgba(74, 100, 180, 0.08);
  border-left-color: var(--admin-info);
}

.admin-search {
  display: flex;
  gap: .5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  padding: .35rem .5rem .35rem .85rem;
  min-width: 280px;
}

.admin-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  color: var(--admin-text);
}

.admin-search svg {
  width: 16px;
  height: 16px;
  color: var(--admin-muted);
}

.admin-select {
  font: inherit;
  font-size: 13px;
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
  padding: .5rem .65rem;
  color: var(--admin-text);
}

.admin-select:focus {
  outline: none;
  border-color: var(--admin-amber);
}

.admin-translations {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.admin-translation {
  background: #fff;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius);
  padding: 1.25rem;
}

.admin-translation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--admin-border);
}

.admin-translation-head h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--admin-text);
}

.admin-translation-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.admin-md {
  font-size: 14px;
  line-height: 1.7;
  max-height: 520px;
  overflow-y: auto;
  padding: 1.25rem;
  background: #fbfaf6;
  border: 1px solid var(--admin-border);
  border-radius: 6px;
}

.admin-md h1, .admin-md h2 {
  font-family: 'Playfair Display', serif;
  margin: 1rem 0 .5rem;
}

.admin-md h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--admin-amber);
  margin: 1rem 0 .35rem;
}

.admin-md p {
  margin: 0 0 .75rem;
}

.admin-md ul, .admin-md ol {
  margin: 0 0 1rem 1.5rem;
}

.admin-md.tall {
  max-height: 1100px;
}

.admin-md.report-prose {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--admin-text);
  background: linear-gradient(180deg, #fbfaf6 0%, #fff 200px);
  padding: 2rem 2.25rem;
}

.admin-md.report-prose h1, .admin-md.report-prose h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--admin-sidebar);
  margin: 1.75rem 0 .65rem;
  line-height: 1.2;
}

.admin-md.report-prose h1 {
  font-size: 26px;
}

.admin-md.report-prose h2 {
  font-size: 21px;
  padding-top: .25rem;
  border-top: 1px solid rgba(15, 21, 35, 0.06);
  padding-top: 1.25rem;
}

.admin-md.report-prose h2:first-child, .admin-md.report-prose h1:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}

.admin-md.report-prose h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--admin-amber);
  margin: 1.5rem 0 .35rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.admin-md.report-prose h3::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: var(--admin-amber);
}

.admin-md.report-prose h4 {
  font-size: 14.5px;
  font-weight: 600;
  margin: 1.2rem 0 .35rem;
  color: var(--admin-sidebar);
}

.admin-md.report-prose p {
  margin: 0 0 .9rem;
}

.admin-md.report-prose strong {
  color: var(--admin-sidebar);
  font-weight: 600;
}

.admin-md.report-prose em {
  font-style: italic;
  color: rgba(15, 21, 35, 0.78);
}

.admin-md.report-prose ul, .admin-md.report-prose ol {
  margin: 0 0 1.1rem 1.4rem;
  padding: 0;
}

.admin-md.report-prose li {
  margin-bottom: .4rem;
}

.admin-md.report-prose li::marker {
  color: var(--admin-amber);
}

.admin-md.report-prose hr {
  border: 0;
  border-top: 1px solid var(--admin-border);
  margin: 1.75rem 0;
}

.admin-md.report-prose blockquote {
  border-left: 3px solid var(--admin-amber);
  padding: .35rem 0 .35rem 1rem;
  margin: 1.1rem 0;
  color: var(--admin-muted);
  font-style: italic;
}

.admin-md.report-prose code {
  background: rgba(15, 21, 35, 0.05);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 13px;
  font-family: 'SF Mono', Menlo, monospace;
}

.admin-md.report-prose pre {
  background: var(--admin-sidebar);
  color: #f0f0f0;
  padding: .9rem 1rem;
  border-radius: 6px;
  overflow-x: auto;
  font-size: 12.5px;
  margin: 0 0 1rem;
}

.admin-md.report-prose pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.admin-md.report-prose table {
  border-collapse: collapse;
  margin: 1.1rem 0;
  width: 100%;
  font-size: 13.5px;
}

.admin-md.report-prose th, .admin-md.report-prose td {
  border: 1px solid var(--admin-border);
  padding: .5rem .75rem;
  text-align: left;
  vertical-align: top;
}

.admin-md.report-prose th {
  background: rgba(15, 21, 35, 0.03);
  font-weight: 600;
}

.admin-md.report-prose a {
  color: var(--admin-amber);
}

.admin-md.report-prose a:hover {
  color: var(--admin-amber);
  text-decoration: underline;
}

.admin-empty {
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: var(--admin-muted);
  font-size: 14px;
}

/* ═══ Email log grid + definition list ═══ */
.admin-grid {
  display: grid;
  gap: 1.25rem;
}

.admin-grid.two-col {
  grid-template-columns: 1.6fr 1fr;
}

@media (max-width: 1100px) {
  .admin-grid.two-col {
    grid-template-columns: 1fr;
  }
}

.admin-dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem 1rem;
  font-size: 13px;
}

.admin-dl dt {
  color: var(--admin-muted, #8A8A8A);
  font-weight: 500;
}

.admin-dl dd {
  margin: 0;
  color: var(--admin-ink, #0F1523);
  word-break: break-word;
}

.admin-input {
  font-family: inherit;
  font-size: 13px;
  padding: .45rem .7rem;
  border: 1px solid #E5E2DC;
  border-radius: 7px;
  background: #fff;
  color: var(--admin-ink, #0F1523);
}

.admin-input:focus {
  outline: none;
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.18);
}

/*# sourceMappingURL=yourcareer.css.map */