:root {
  --bg: #FFF7ED;
  --surface: #FFFFFF;
  --text: #1F2937;
  --muted: #6B7280;
  --primary: #EA580C;
  --secondary: #0EA5E9;
  --accent: #8B5CF6;
  --border: rgba(31,41,55,0.12);
  --nav-bg: #1F2937;
  --sidebar-w: 72px;
  --topnav-h: 52px;
  --max: 1120px;
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  --kw-crystal: crystal;
  --kw-refraction: refraction;
  --kw-light: light;
  --kw-spiritual: spiritual;
  --kw-meditation: meditation;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(255, 247, 237, 0.96) 0%, rgba(14, 165, 233, 0.08) 45%, rgba(255, 247, 237, 0.98) 100%),
    radial-gradient(ellipse 70% 50% at 12% 8%, rgba(234, 88, 12, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 90% 18%, rgba(139, 92, 246, 0.09), transparent 50%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--kw-crystal) " " var(--kw-refraction) " " var(--kw-light);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 28% 18% at 18% 28%, rgba(255, 180, 200, 0.14), transparent 70%),
    radial-gradient(ellipse 24% 16% at 72% 18%, rgba(160, 210, 255, 0.16), transparent 70%),
    radial-gradient(ellipse 26% 20% at 52% 68%, rgba(180, 255, 210, 0.12), transparent 70%),
    radial-gradient(ellipse 18% 14% at 88% 78%, rgba(255, 230, 160, 0.12), transparent 70%);
  opacity: 0.85;
  animation: crystal-breathe 14s ease-in-out infinite;
}

body::after {
  content: var(--kw-spiritual) " " var(--kw-meditation);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    repeating-linear-gradient(
      125deg,
      transparent,
      transparent 42px,
      rgba(234, 88, 12, 0.035) 42px,
      rgba(234, 88, 12, 0.035) 43px
    ),
    radial-gradient(circle at 38% 58%, rgba(255, 255, 255, 0.4), transparent 48%);
  mix-blend-mode: soft-light;
  animation: refraction-drift 22s ease-in-out infinite;
}

@keyframes crystal-breathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.025);
  }
}

@keyframes refraction-drift {
  0%,
  100% {
    opacity: 0.4;
    background-position: 0% 0%, 50% 50%;
  }
  50% {
    opacity: 0.55;
    background-position: 8% 4%, 46% 54%;
  }
}

body > * {
  position: relative;
  z-index: 1;
}

body.no-scroll {
  overflow: hidden;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 2.2s ease, opacity 2.2s ease, filter 2.2s ease, box-shadow 2.2s ease;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.crystal {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.refraction {
  background-image: linear-gradient(
    120deg,
    transparent 0%,
    rgba(14, 165, 233, 0.08) 35%,
    rgba(139, 92, 246, 0.1) 55%,
    transparent 80%
  );
}

.light {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.35);
}

.spiritual {
  letter-spacing: 0.06em;
}

.meditation {
  transition: transform 2.8s ease, opacity 2.8s ease;
}

.disclosure-wrap {
  display: flex;
  justify-content: center;
  padding: 0 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.disclosure-card {
  max-width: 900px;
  width: 100%;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  border: 1px solid var(--border);
}

.site-sidebar {
  display: none;
}

.site-topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topnav-h);
  padding: 0 16px;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 120;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  text-decoration: none;
}

.brand-lockup img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-lockup span {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.burger {
  width: 40px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, 0.98);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-overlay a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.nav-overlay .mobile-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  overflow: hidden;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15),
    rgba(14, 165, 233, 0.18) 40%,
    rgba(139, 92, 246, 0.2)
  );
  mix-blend-mode: soft-light;
  animation: crystal-breathe 16s ease-in-out infinite;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 3rem 2.5rem;
  background: var(--surface);
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(234, 88, 12, 0.06), transparent 55%, rgba(14, 165, 233, 0.07));
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
  max-width: 28rem;
}

.hero-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-sub {
  color: var(--muted);
  font-size: 1.02rem;
}

.offers-section {
  padding: 3.5rem 1.5rem;
  background-image:
    linear-gradient(180deg, rgba(31, 41, 55, 0.82), rgba(31, 41, 55, 0.9)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.offers-inner > h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: #fff;
}

.offers-lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2.25rem;
  max-width: 36rem;
  margin-inline: auto;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.offer-card {
  display: grid;
  grid-template-columns: 48px 72px minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  background: #12203a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(18, 32, 58, 0.25);
  transition: transform 2.4s ease, box-shadow 2.4s ease, filter 2.4s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.18), 0 0 24px rgba(139, 92, 246, 0.12);
}

.offer-rank {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
}

.offer-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  flex-shrink: 0;
  padding: 6px;
  box-sizing: border-box;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.offer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-serif);
}

.offer-bonus {
  font-size: clamp(0.78rem, 2.4vw, 0.98rem);
  color: #86efac;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.offer-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
  margin-top: 0.35rem;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: filter 2s ease, box-shadow 2s ease;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
}

.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem;
}

.section-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}

.section-wrap h2 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 1rem;
}

.section-wrap p {
  margin-bottom: 0.9rem;
  color: var(--text);
}

.topic-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.85rem 1.45rem;
  background: linear-gradient(135deg, var(--primary), rgba(234, 88, 12, 0.85));
  color: #fff !important;
  font-weight: 600;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.22);
  transition: transform 2.2s ease, box-shadow 2.2s ease, filter 2.2s ease;
}

.topic-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.25), 0 0 18px rgba(139, 92, 246, 0.15);
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(31, 41, 55, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.25rem;
  align-items: center;
}

.layout-split-rev {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.25rem;
  align-items: center;
}

.layout-band {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.layout-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0.55;
}

.layout-steps ol {
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: 0.65rem;
  padding-left: 1.2rem;
}

.promo-checklist {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--text);
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.layout-cards article {
  padding: 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.05);
  transition: transform 2.4s ease, box-shadow 2.4s ease;
}

.layout-cards article:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(14, 165, 233, 0.12);
}

.layout-cards h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.layout-aside {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.glass-panel {
  padding: 1.75rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 40px rgba(31, 41, 55, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.pull-quote {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 0 0.75rem 1.1rem;
  margin: 1.25rem 0;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.08), transparent);
}

.layout-rail {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.rail-strip {
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.12));
}

.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.checklist-grid ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.checklist-grid li {
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.stat {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.layout-stack {
  display: grid;
  gap: 1rem;
}

.stack-block {
  padding: 1.35rem 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mosaic-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.mosaic-band .text-pane {
  padding: 2rem 1.75rem;
}

.mosaic-band .visual-pane {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.mosaic-band .visual-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.25));
}

.info-divider {
  height: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.site-footer {
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
}

.footer-compliance p {
  font-size: 0.88rem;
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 52rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.9rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.footer-badges img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-company,
.footer-updated {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 400;
  display: none;
}

.age-gate.active,
.cookie-banner.active {
  display: flex;
}

.age-gate {
  inset: 0;
  background: rgba(31, 41, 55, 0.72);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.age-gate-dialog {
  max-width: 420px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.age-gate-dialog h2 {
  margin-bottom: 0.75rem;
}

.age-gate-dialog p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.age-actions,
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: filter 1.8s ease, transform 1.8s ease;
}

.btn-confirm {
  background: var(--primary);
  color: #fff;
}

.btn-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-confirm:hover,
.btn-decline:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 12px 36px rgba(31, 41, 55, 0.15);
  flex-direction: column;
  gap: 0.9rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 2.75rem 1.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(14, 165, 233, 0.08));
  border-bottom: 1px solid var(--border);
}

.page-hero .inner,
.subpage-hero .inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero h1,
.subpage-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.prose {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.prose h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.35rem;
}

.prose h3 {
  margin: 1.25rem 0 0.55rem;
  font-size: 1.1rem;
}

.prose p,
.prose li {
  margin-bottom: 0.85rem;
  color: var(--text);
}

.prose ul {
  margin: 0.75rem 0 1rem 1.2rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 1.8s ease;
}

.contact-form button:hover {
  filter: brightness(1.06);
}

.contact-form.is-hidden {
  display: none;
}

.form-error {
  color: #b91c1c;
  font-size: 0.85rem;
  min-height: 1.1em;
}

.contact-success {
  display: none;
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

.contact-success.active {
  display: block;
}

.redirect-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.redirect-box {
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(31, 41, 55, 0.08);
}

.ad-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(234, 88, 12, 0.12);
  color: var(--primary);
  margin-bottom: 1rem;
}

.spinner {
  width: 42px;
  height: 42px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 3px solid rgba(234, 88, 12, 0.2);
  border-top-color: var(--primary);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.error-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.error-page h1 {
  font-size: 4rem;
  margin: 0.5rem 0 1rem;
  color: var(--primary);
}

.subpage-hero {
  padding: 3rem 1.5rem 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(139, 92, 246, 0.1)),
    radial-gradient(ellipse 50% 60% at 90% 20%, rgba(14, 165, 233, 0.12), transparent);
  border-bottom: 1px solid var(--border);
}

.sub-layout-guide {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.sub-rail {
  position: sticky;
  top: 1rem;
  align-self: start;
  padding: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.sub-rail h2 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.sub-rail ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.sub-rail a {
  font-size: 0.88rem;
  color: var(--muted);
}

.sub-main h2 {
  margin: 1.75rem 0 0.75rem;
}

.sub-main p {
  margin-bottom: 0.9rem;
}

.sub-split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.sub-split-hero .pane-text {
  padding: 2.5rem 1.75rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-split-hero .pane-visual {
  background-size: cover;
  background-position: center;
  position: relative;
}

.sub-split-hero .pane-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(234, 88, 12, 0.15), rgba(14, 165, 233, 0.2));
}

.sub-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: var(--max);
  margin: -1.5rem auto 0;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.sub-stat-strip .cell {
  padding: 1rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(31, 41, 55, 0.06);
  font-size: 0.82rem;
  color: var(--muted);
}

.sub-stat-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.article-wide {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
}

.article-wide .cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.callout {
  margin: 1.5rem 0;
  padding: 1.25rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  border: 1px solid var(--border);
}

.image-rail {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
}

.mini-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

.mini-table th,
.mini-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.mini-table th {
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
}

@media (min-width: 901px) {
  body {
    padding-left: var(--sidebar-w);
  }

  .site-topnav {
    display: none;
  }

  .site-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--nav-bg);
    z-index: 200;
    padding: 18px 0 24px;
    gap: 1rem;
  }

  .site-sidebar .brand-lockup {
    flex-direction: column;
    gap: 6px;
    padding: 0 6px;
    text-align: center;
  }

  .site-sidebar .brand-lockup img {
    width: 36px;
    height: 36px;
  }

  .site-sidebar .brand-lockup span {
    font-size: 0.55rem;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .sidebar-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 0.5rem;
    width: 100%;
  }

  .sidebar-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.72) !important;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    border: 1px solid transparent;
    transition: color 1.8s ease, background 1.8s ease, border-color 1.8s ease, box-shadow 1.8s ease;
  }

  .sidebar-nav a:hover,
  .sidebar-nav a:focus {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(234, 88, 12, 0.25);
    box-shadow: 0 0 18px rgba(14, 165, 233, 0.2);
  }

  .sidebar-nav a::after {
    content: attr(data-tip);
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(31, 41, 55, 0.95);
    color: #fff;
    font-size: 0.72rem;
    font-family: var(--font-sans);
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.2s ease;
  }

  .sidebar-nav a:hover::after,
  .sidebar-nav a:focus::after {
    opacity: 1;
  }
}

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

  .hero-media {
    max-height: 180px;
    min-height: 180px;
    max-width: 100%;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    padding: 1.75rem 1.25rem 2rem;
    border-left: none;
  }

  .layout-split,
  .layout-split-rev,
  .layout-aside,
  .layout-rail,
  .layout-cards,
  .checklist-grid,
  .stat-band,
  .mosaic-band,
  .sub-layout-guide,
  .sub-split-hero,
  .article-wide .cols-2,
  .sub-stat-strip {
    grid-template-columns: 1fr;
  }

  .sub-split-hero {
    overflow: hidden;
    max-width: 100%;
  }

  .sub-split-hero .pane-visual {
    max-width: 100%;
    min-height: 160px;
    max-height: 200px;
  }

  .offer-card {
    grid-template-columns: 40px 64px 1fr;
    grid-template-rows: auto auto;
  }

  .offer-logo {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .offer-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .offers-section {
    background-attachment: scroll;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 260px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .offer-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .offer-rank,
  .offer-logo {
    width: 56px;
    height: 56px;
  }

  .offer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    max-width: none;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 200px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 400px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .hero-media {
    max-height: 160px;
    min-height: 160px;
  }
}
