:root {
  --cream: #F4F1EA;
  --ink: #2F2A36;
  --muted: #675F6E;
  --paper: #FFFDF8;
  --line: rgba(47,42,54,.14);
  --blue-green: #4AAFBF;
  --blue-green-light: #E6F4F5;
  --yellow-orange: #F2C057;
  --yellow-orange-light: #FFF3DA;
  --red-violet: #B07AA8;
  --red-violet-light: #F3E6F0;
  --shadow: 0 18px 45px rgba(47,42,54,.10);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(242,192,87,.28), transparent 28%),
    radial-gradient(circle at 88% 0%, rgba(74,175,191,.24), transparent 32%),
    linear-gradient(180deg, var(--cream), #FFF9ED 100%);
}

a { color: inherit; }

.site-header {
  min-height: 86px;
  padding: 14px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: rgba(244,241,234,.94);
  border-bottom: 1px solid rgba(47,42,54,.10);
  position: relative;
  z-index: 5;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
  font-size: 15px;
  color: #534B5B;
}

.nav-right {
  justify-content: flex-end;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  white-space: nowrap;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--red-violet);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo img {
  display: block;
  width: 92px;
  height: auto;
}

.pill-link {
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--red-violet-light);
  border: 1px solid rgba(176,122,168,.32);
  color: #7D4B74;
}

.video-hero {
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(74,175,191,.22), rgba(242,192,87,.18)),
    repeating-linear-gradient(45deg, rgba(47,42,54,.04), rgba(47,42,54,.04) 1px, transparent 1px, transparent 15px);
  border-bottom: 1px solid rgba(47,42,54,.12);
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-cta {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255,253,248,.9);
  border: 3px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(47,42,54,.16);
}

.intro-section {
  padding: clamp(42px, 7vw, 76px) 20px 36px;
}

.intro-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.kicker {
  color: var(--red-violet);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: .95;
  letter-spacing: -.035em;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -.025em;
}

h3 {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.015em;
}

p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 17px;
}

.intro-inner p {
  max-width: 850px;
  margin: 22px auto 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.intro-inner .actions {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(47,42,54,.08);
}

.btn.primary {
  background: var(--blue-green);
  color: white;
  border-color: var(--blue-green);
}

.btn.warm {
  background: var(--yellow-orange);
  border-color: var(--yellow-orange);
  color: #3B2D12;
}

.btn.soft {
  background: var(--red-violet-light);
  border-color: rgba(176,122,168,.3);
  color: #7D4B74;
}

.section-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 28px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 520px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}

.tool-card,
.guide-card,
.perks-panel {
  background: rgba(255,253,248,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tool-card {
  overflow: hidden;
}

.media-placeholder,
.cover-placeholder {
  background:
    linear-gradient(135deg, rgba(230,244,245,.86), rgba(255,243,218,.76));
  border-bottom: 1px dashed rgba(47,42,54,.18);
  color: rgba(47,42,54,.55);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 210px;
  padding: 0px;
}

.media-placeholder,
.cover-placeholder {
  overflow: hidden;
}

.media-placeholder img,
.cover-placeholder img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tool-content {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tag.available {
  background: var(--blue-green-light);
  color: #267D88;
}

.tag.soon {
  background: var(--yellow-orange-light);
  color: #8A631A;
}

.tag.progress {
  background: var(--red-violet-light);
  color: #844E7A;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 900;
  color: #267D88;
  text-decoration: none;
}

.text-muted {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 900;
  color: var(--muted);
}

.guide-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.guide-list {
  display: grid;
  gap: 18px;
}

.guide-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 20px;
  align-items: center;
}

.cover-placeholder {
  min-height: 160px;
  border: 1px dashed rgba(47,42,54,.2);
  border-radius: 18px;
}

.perks-panel {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(230,244,245,.86), rgba(255,253,248,.9));
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 20px;
}

.perk-item {
  border: 1px solid rgba(47,42,54,.1);
  border-radius: 18px;
  background: rgba(255,253,248,.7);
  padding: 16px;
}

.perk-item strong,
.perk-item span {
  display: block;
}

.perk-item span {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 6px;
}

.discount-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(47,42,54,.08);
}

.discount-card span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 8px;
}

.discount-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.02em;
}

.discount-card p {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0;
}

.site-footer {
  width: 100%;
  margin-top: 54px;
  padding: 42px 28px 36px;
  background: rgba(255,253,248,.72);
  border-top: 1px solid rgba(47,42,54,.12);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .75fr);
  gap: 28px;
  align-items: start;
}

.footer-brand img {
  width: 92px;
  height: auto;
  margin-bottom: 12px;
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h4 {
  margin: 0 0 8px;
  font-size: 14px;
}

.footer-column a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--red-violet);
}

.footer-socials {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(47,42,54,.10);
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(47,42,54,.06);
}

.footer-socials img {
  width: 20px;
  height: 20px;
  display: block;
}

.embed-mode {
  background: transparent;
}

.embed-mode .site-header,
.embed-mode .site-footer,
.embed-mode .video-hero,
.embed-mode .intro-section {
  display: none;
}

.embed-mode .section-wrap {
  padding: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .tool-grid,
  .guide-section,
  .perks-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .guide-card {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-left,
  .nav-right {
    font-size: 13px;
  }

  .brand-logo img {
    width: 80px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .video-hero {
    height: 280px;
  }

  .section-wrap {
    padding: 34px 18px;
  }

  .guide-card {
    grid-template-columns: 1fr;
  }

  .cover-placeholder {
    min-height: 140px;
  }

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

.legal-main {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) 22px 22px;
}

.legal-card {
  background: rgba(255,253,248,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}

.legal-card h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 20px;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
  margin-bottom: 10px;
}

.legal-card p {
  max-width: 760px;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--blue-green-light);
  color: #267D88;
  font-size: 12px;
  font-weight: 900;
}
