:root {
  --panel: rgba(255, 252, 248, 0.84);
  --panel-strong: #fffdf9;
  --line: rgba(132, 89, 38, 0.14);
  --line-strong: rgba(132, 89, 38, 0.22);
  --text: #2f241a;
  --text-soft: #655342;
  --text-muted: #8c7d6d;
  --orange: #ef8f1a;
  --orange-bright: #ffab2e;
  --orange-deep: #c96a08;
  --peach: #ffe3c2;
  --shadow: 0 14px 34px rgba(121, 72, 15, 0.08);
  --shadow-strong: 0 22px 52px rgba(121, 72, 15, 0.11);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Poppins", "Segoe UI", sans-serif;
}

body::before {
  display: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.site-header,
.hero-section,
.section-grid,
.transform-section,
.steps-section,
.showcase-section,
.faq-section,
.cta-section,
.trust-strip {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 180px;
  height: auto;
  display: block;
  flex-shrink: 0;
  max-width: 100%;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.35rem;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  box-shadow: 0 18px 30px rgba(201, 115, 22, 0.28);
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border: 1px solid rgba(132, 89, 38, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.button-small {
  padding: 0.8rem 1rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  max-width: 11ch;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.2rem;
  color: var(--orange);
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 500;
}

.hero-text,
.section-heading p,
.cta-panel p,
.feature-card p,
.step-card p,
.showcase-card p,
.faq-list p,
.transform-card li,
.mini-copy {
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-text {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: 1.08rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-points,
.mini-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.hero-points {
  display: grid;
  gap: 0.95rem;
}

.hero-points li,
.mini-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--text-soft);
}

.hero-points li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-bright), var(--orange));
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.orb {
  display: none;
}

.orb-left {
  width: 230px;
  height: 230px;
  left: -2rem;
  top: 2rem;
  background: radial-gradient(circle, rgba(255, 196, 126, 0.52), transparent 68%);
}

.orb-right {
  width: 280px;
  height: 280px;
  right: -4rem;
  top: 8rem;
  background: radial-gradient(circle, rgba(224, 137, 47, 0.3), transparent 72%);
}

.reader-window,
.feature-card,
.step-card,
.showcase-card,
.transform-card,
.faq-list details,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.reader-window {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.window-topbar {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(132, 89, 38, 0.08);
}

.window-topbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(201, 115, 22, 0.35);
}

.url-pill {
  margin-left: 0.65rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--text-muted);
  background: rgba(255, 248, 240, 0.92);
  font-size: 0.82rem;
}

.window-body {
  display: flex;
  flex: 1;
  min-height: 0;
}

.mini-label {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
}

.transform-card h3,
.feature-card h3,
.step-card h3,
.showcase-card h3,
.faq-list summary {
  margin: 0;
  letter-spacing: -0.04em;
}

.reader-article {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 254, 252, 0.85), rgba(255, 247, 238, 0.7));
}

.reader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-headline {
  margin: 0;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.article-meta {
  margin: 0.7rem 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.article-meta:empty {
  display: none;
}

.reader-article-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 1rem;
}

.article-paragraph {
  margin: 0 0 1rem;
  color: #4f4032;
  font-size: 0.98rem;
  line-height: 1.78;
}

.article-keyword {
  cursor: pointer;
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(201, 115, 22, 0.52);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
  background: rgba(255, 232, 202, 0.65);
  border-radius: 0.35rem;
  padding: 0 0.2rem;
}

.article-keyword.is-active {
  background: rgba(255, 224, 188, 0.95);
  box-shadow: 0 0 0 1px rgba(201, 115, 22, 0.16);
}

.article-keyword:focus-visible {
  outline: 2px solid rgba(201, 115, 22, 0.28);
  outline-offset: 2px;
}

.keyword-tooltip {
  position: absolute;
  z-index: 6;
  width: min(296px, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 20px;
  border: 1px solid rgba(132, 89, 38, 0.12);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 22px 48px rgba(121, 72, 15, 0.14);
  backdrop-filter: blur(18px);
}

.keyword-tooltip[hidden] {
  display: none;
}

.keyword-tooltip::before {
  content: "";
  position: absolute;
  top: -6px;
  left: var(--tooltip-arrow-left, 22px);
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(132, 89, 38, 0.12);
  border-left: 1px solid rgba(132, 89, 38, 0.12);
  background: rgba(255, 253, 249, 0.98);
  transform: rotate(45deg);
}

.keyword-tooltip.is-above::before {
  top: auto;
  bottom: -6px;
  border-top: 0;
  border-left: 0;
  border-right: 1px solid rgba(132, 89, 38, 0.12);
  border-bottom: 1px solid rgba(132, 89, 38, 0.12);
}

.keyword-tooltip-word {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.keyword-tooltip-meta {
  margin: 0.18rem 0 0;
  color: var(--text-muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.keyword-tooltip-meaning {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-top: 0.7rem;
}

.custom-select {
  position: relative;
}

.custom-select-inline {
  min-width: 170px;
}

.custom-select-trigger {
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(132, 89, 38, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 600;
  text-align: left;
}

.custom-select-trigger-inline {
  padding: 0.6rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 245, 232, 0.96);
  color: var(--orange-deep);
  font-size: 0.86rem;
}

.custom-select-trigger:focus-visible {
  outline: 2px solid rgba(201, 115, 22, 0.28);
  outline-offset: 2px;
}

.custom-select-value {
  flex: 1;
}

.custom-select-chevron {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  right: 0;
  z-index: 5;
  display: grid;
  gap: 0.45rem;
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(132, 89, 38, 0.12);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 20px 44px rgba(121, 72, 15, 0.16);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-option {
  cursor: pointer;
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: rgba(255, 242, 224, 0.84);
  color: var(--text);
}

.custom-select-option.is-selected {
  background: rgba(255, 235, 209, 0.92);
  color: var(--orange-deep);
}

.trust-strip {
  margin-top: 0.8rem;
  padding: 1.15rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(132, 89, 38, 0.1);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.trust-strip p {
  margin: 0;
  color: var(--text-soft);
}

.section-grid,
.transform-section,
.steps-section,
.showcase-section,
.faq-section,
.cta-section {
  padding: 5.5rem 0 0;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 48rem;
}

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
}

.section-heading p {
  margin: 0;
  max-width: 38rem;
}

.feature-cards,
.steps-grid,
.showcase-grid,
.transform-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.step-card,
.showcase-card,
.transform-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.feature-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(255, 232, 202, 0.95);
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 700;
}

.feature-card h3,
.step-card h3,
.showcase-card h3,
.transform-card h3 {
  margin-top: 0.65rem;
  font-size: 1.45rem;
}

.transform-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.transform-card .mini-list {
  margin-top: 1rem;
}

.transform-card-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(247, 238, 226, 0.88));
  box-shadow: var(--shadow-strong);
}

.transform-card-warm {
  background: linear-gradient(180deg, rgba(255, 240, 219, 0.94), rgba(255, 249, 241, 0.92));
  box-shadow: var(--shadow-strong);
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid .step-card h3 {
  margin-top: 0;
}

.feature-card h3,
.step-card h3 {
  margin-top: 0;
}

.showcase-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.showcase-card-large {
  background:
    radial-gradient(circle at top right, rgba(248, 177, 101, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 247, 236, 0.92), rgba(255, 255, 255, 0.74));
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.06rem;
  font-weight: 500;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.faq-list code {
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  background: rgba(255, 236, 210, 0.85);
  color: var(--orange-deep);
  font-family: "Space Grotesk", monospace;
}

.cta-section {
  padding-bottom: 4.5rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 0 2.5rem;
  margin-top: 3rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 205, 148, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(255, 245, 230, 0.92), rgba(255, 255, 255, 0.74));
}

.cta-panel h2 {
  max-width: 13ch;
}

@media (max-width: 1100px) {
  .hero-section,
  .showcase-grid,
  .feature-cards,
  .steps-grid,
  .transform-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual {
    min-height: 720px;
  }

  .reader-window {
    inset: 0;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 1rem;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero-section,
  .section-grid,
  .transform-section,
  .steps-section,
  .showcase-section,
  .faq-section,
  .cta-section,
  .trust-strip {
    width: min(calc(100% - 1.25rem), var(--content-width));
  }

  .hero-copy h1 {
    /* font-size: clamp(2.9rem, 15vw, 4.1rem); */
  }

  .hero-visual {
    min-height: 720px;
  }

  .reader-window {
    inset: 0;
  }

  .reader-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-headline {
    font-size: 1.42rem;
  }

  .article-body {
    padding-right: 0;
  }

  .section-grid,
  .transform-section,
  .steps-section,
  .showcase-section,
  .faq-section,
  .cta-section {
    padding-top: 4rem;
  }

  .cta-panel {
    padding: 1.5rem;
    border-radius: 24px;
  }
}

.legal-shell {
  width: min(calc(100% - 1.5rem), 860px);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 1.5rem;
  color: var(--text-soft);
  font-weight: 600;
}

.legal-card {
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(26px);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.legal-updated {
  margin: 1rem 0 2rem;
  color: var(--text-muted);
}

.legal-card section + section {
  margin-top: 2rem;
}

.legal-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 1.25rem;
}
