:root {
  --paper: #071020;
  --midnight: #101a33;
  --panel: #0d1830;
  --panel-soft: rgba(255, 244, 216, 0.06);
  --ivory: #fff7df;
  --ivory-deep: #f4e4bd;
  --ink-dark: #101a33;
  --muted-dark: #5d523f;
  --ink: #fff4d8;
  --muted: #cfc2a2;
  --gold: #d9a227;
  --gold-bright: #ffd766;
  --saffron: #f6a935;
  --maroon: #6e0000;
  --red: #a40000;
  --teal: #1e6f70;
  --line: rgba(217, 162, 39, 0.28);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(217, 162, 39, 0.12), transparent 28%),
    radial-gradient(circle at 84% 2%, rgba(164, 0, 0, 0.14), transparent 28%),
    var(--paper);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(7, 16, 32, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-bright);
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(217, 162, 39, 0.62);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(217, 162, 39, 0.22), rgba(110, 0, 0, 0.22));
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 2.4vw, 28px);
  color: rgba(255, 244, 216, 0.84);
  font-size: 0.94rem;
}

.nav-links a {
  padding: 6px 0;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--gold-bright);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-cta,
.button.primary,
.button.compact {
  color: #071020;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: var(--shadow);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid rgba(255, 244, 216, 0.42);
  background: rgba(255, 244, 216, 0.08);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-temple.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 38%, rgba(255, 215, 102, 0.14), transparent 18%),
    linear-gradient(115deg, transparent 58%, rgba(255, 244, 216, 0.08) 58%, transparent 68%),
    linear-gradient(90deg, rgba(7, 16, 32, 0.94) 0%, rgba(7, 16, 32, 0.76) 45%, rgba(7, 16, 32, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 16, 32, 0.84) 0%, rgba(7, 16, 32, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 13vw, 9.8rem);
  line-height: 0.9;
  font-weight: 700;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.44);
}

.hero-ornament {
  display: block;
  width: min(270px, 62vw);
  height: auto;
  margin: 18px 0 0;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.45));
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 244, 216, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

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

.hero-note {
  max-width: 560px;
  margin: 20px 0 0;
  color: rgba(255, 244, 216, 0.72);
  font-size: 0.94rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(255, 215, 102, 0.32);
  border-radius: 999px;
  background: rgba(7, 16, 32, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.08);
  font-size: 0.92rem;
  font-weight: 720;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--ink-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 228, 189, 0.88)),
    var(--ivory);
  border-top: 1px solid rgba(217, 162, 39, 0.45);
  border-bottom: 1px solid rgba(217, 162, 39, 0.45);
}

.trust-strip-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 18px 0;
}

.trust-strip-inner div {
  min-height: 96px;
  padding: 10px clamp(12px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(16, 26, 51, 0.12);
}

.trust-strip-inner div:first-child {
  border-left: 0;
}

.trust-strip-inner strong {
  color: var(--maroon);
  font-size: 1.02rem;
}

.trust-strip-inner span {
  margin-top: 6px;
  color: var(--muted-dark);
  font-size: 0.95rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 4vw, 54px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  font-weight: 700;
}

h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.25;
}

p {
  margin: 0;
}

.lead,
.section-lead,
.persona-copy p,
.trust-copy p,
.final-layout p,
.page-copy p,
.page-copy li {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
}

.section-lead {
  max-width: 820px;
  margin-top: 18px;
}

.intro {
  color: var(--ink-dark);
  background:
    linear-gradient(135deg, rgba(255, 247, 223, 0.98), rgba(244, 228, 189, 0.9)),
    var(--ivory);
}

.intro h2,
.use-cases h2,
.faq h2 {
  color: var(--ink-dark);
}

.intro .section-kicker,
.use-cases .section-kicker,
.faq .section-kicker {
  color: var(--maroon);
}

.intro .lead,
.use-cases .section-lead,
.faq .section-lead {
  color: var(--muted-dark);
}

.trust {
  background: linear-gradient(180deg, #071020, #0a1428);
}

.ai-belief,
.gpt-band {
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 162, 39, 0.11), transparent 30%),
    var(--midnight);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq {
  color: var(--ink-dark);
  background:
    linear-gradient(180deg, rgba(255, 247, 223, 0.98), rgba(244, 228, 189, 0.92)),
    var(--ivory);
  border-top: 1px solid rgba(217, 162, 39, 0.35);
  border-bottom: 1px solid rgba(217, 162, 39, 0.35);
}

.belief-grid,
.use-grid {
  display: grid;
  gap: 14px;
}

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

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

.belief-grid article,
.use-grid article,
.gpt-points article,
.steps article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.08);
}

.belief-grid article,
.use-grid article,
.gpt-points article,
.steps article,
.prompt-list p,
.faq-list details {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.belief-grid article:hover,
.use-grid article:hover,
.gpt-points article:hover,
.steps article:hover,
.prompt-list p:hover,
.faq-list details:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 102, 0.48);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.belief-grid article {
  min-height: 190px;
  padding: clamp(20px, 2.4vw, 28px);
}

.tile-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 102, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 244, 216, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(217, 162, 39, 0.32), rgba(110, 0, 0, 0.24)),
    rgba(7, 16, 32, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 244, 216, 0.16), 0 14px 28px rgba(0, 0, 0, 0.16);
}

.tile-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-bright);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 10px rgba(255, 194, 60, 0.22));
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.belief-grid p,
.use-grid p,
.gpt-points p,
.steps p {
  margin-top: 12px;
  color: var(--muted);
}

.belief-note {
  max-width: 860px;
  margin-top: 24px;
  padding-left: 16px;
  color: var(--gold-bright);
  border-left: 3px solid var(--saffron);
  font-weight: 680;
}

.persona-band {
  background:
    linear-gradient(90deg, rgba(7, 16, 32, 0.96), rgba(16, 26, 51, 0.98)),
    var(--midnight);
}

.persona-layout {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.persona-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(217, 162, 39, 0.22), transparent 46%),
    linear-gradient(135deg, rgba(164, 0, 0, 0.2), rgba(16, 26, 51, 0.92));
}

.persona-lotus {
  position: absolute;
  width: 230px;
  opacity: 0.34;
  filter: blur(0.2px) drop-shadow(0 20px 34px rgba(0, 0, 0, 0.42));
}

.portrait-frame {
  position: relative;
  width: min(230px, 64vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(217, 162, 39, 0.58);
  background:
    linear-gradient(145deg, rgba(217, 162, 39, 0.18), rgba(110, 0, 0, 0.2)),
    var(--paper);
  box-shadow: var(--shadow);
}

.portrait-initial {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 10vw, 5.8rem);
}

.persona-copy {
  max-width: 720px;
}

.persona-copy p + p,
.trust-copy p + p,
.page-copy p + p,
.page-copy ul + p,
.page-copy p + ul {
  margin-top: 18px;
}

.persona-note {
  color: var(--gold-bright) !important;
  font-weight: 720;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.steps article,
.use-grid article {
  padding: clamp(22px, 3vw, 32px);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(255, 215, 102, 0.28);
  border-radius: 999px;
  background: rgba(255, 244, 216, 0.06);
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 820;
}

.use-cases {
  color: var(--ink-dark);
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 162, 39, 0.18), transparent 25%),
    linear-gradient(180deg, #fff7df, #f5e5bf);
}

.use-cases .section-heading {
  max-width: 860px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7) !important;
  border-color: rgba(16, 26, 51, 0.14) !important;
  box-shadow: 0 18px 44px rgba(16, 26, 51, 0.08) !important;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--saffron));
}

.feature-card h3 {
  color: var(--ink-dark);
}

.feature-card p {
  color: var(--muted-dark);
}

.featured-card {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(7, 16, 32, 0.98), rgba(110, 0, 0, 0.92)) !important;
  border-color: rgba(217, 162, 39, 0.42) !important;
  box-shadow: 0 22px 54px rgba(16, 26, 51, 0.18) !important;
}

.featured-card h3 {
  color: var(--gold-bright);
}

.featured-card p {
  color: rgba(255, 244, 216, 0.82);
}

.questions-band {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 18%, rgba(217, 162, 39, 0.12), transparent 24%),
    linear-gradient(rgba(7, 16, 32, 0.92), rgba(7, 16, 32, 0.92)),
    var(--paper);
}

.questions-band .section-kicker {
  color: var(--saffron);
}

.questions-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.prompt-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.prompt-list p {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  color: rgba(255, 244, 216, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 244, 216, 0.07);
}

.prompt-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 215, 102, 0.36);
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 244, 216, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(217, 162, 39, 0.2), rgba(110, 0, 0, 0.18)),
    rgba(217, 162, 39, 0.12);
}

.prompt-icon svg {
  width: 19px;
  height: 19px;
  color: var(--gold-bright);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gpt-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.gpt-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gpt-points article {
  min-height: 156px;
  padding: clamp(20px, 2.4vw, 28px);
}

.gpt-note {
  grid-column: 2;
  margin-top: 20px;
  padding: 16px 18px;
  color: var(--gold-bright);
  background: rgba(217, 162, 39, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 650;
}

.mini-cta-panel {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(217, 162, 39, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 162, 39, 0.12), rgba(255, 244, 216, 0.06)),
    rgba(7, 16, 32, 0.28);
}

.mini-cta-panel p {
  margin-bottom: 16px;
  color: rgba(255, 244, 216, 0.84);
  font-weight: 650;
}

.mini-cta-panel span {
  display: block;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 840;
  text-transform: uppercase;
}

.mini-cta-panel strong {
  display: block;
  margin: 8px 0 18px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--gold-bright);
  font-weight: 820;
}

.text-link:hover {
  color: var(--saffron);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(16, 26, 51, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 38px rgba(16, 26, 51, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink-dark);
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--saffron);
  font-size: 1.28rem;
  line-height: 1;
}

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

.faq-list p {
  padding: 0 22px 22px;
  color: var(--muted-dark);
}

.final-cta {
  color: var(--ink);
  background:
    linear-gradient(rgba(7, 16, 32, 0.9), rgba(7, 16, 32, 0.92)),
    url("assets/hero-temple.webp");
  background-size: cover;
  background-position: center;
}

.final-layout {
  max-width: 760px;
}

.final-layout p {
  margin: 18px 0 30px;
  color: rgba(255, 244, 216, 0.86);
}

.final-diya {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.site-footer {
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 244, 216, 0.76);
  background: #050b16;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.92rem;
}

.footer-inner p:first-child {
  color: var(--gold-bright);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 244, 216, 0.82);
}

.page-hero {
  position: relative;
  padding: 150px clamp(18px, 4vw, 54px) 78px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 16, 32, 0.94), rgba(7, 16, 32, 0.84)),
    url("assets/hero-temple.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: clamp(20px, 7vw, 110px);
  bottom: -36px;
  width: min(24vw, 260px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 215, 102, 0.12) 0 38%, transparent 39%),
    url("assets/gold-lotus.webp") center / contain no-repeat;
  opacity: 0.3;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.94;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 244, 216, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.page-section {
  padding: clamp(56px, 8vw, 92px) clamp(18px, 4vw, 54px);
  background: var(--paper);
}

.page-copy {
  width: min(900px, 100%);
  margin: 0 auto;
}

.page-copy h2 {
  margin-top: 42px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.page-copy h2:first-child {
  margin-top: 0;
}

.page-copy ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.page-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-soft);
}

.page-card p {
  margin-top: 10px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .nav-links {
    display: none;
  }

  .two-column,
  .persona-layout,
  .gpt-layout {
    grid-template-columns: 1fr;
  }

  .gpt-note {
    grid-column: 1;
  }

  .steps,
  .use-grid,
  .belief-grid,
  .page-card-grid,
  .prompt-list,
  .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 860px;
  }
}

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

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-top: 92px;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6rem);
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .steps,
  .use-grid,
  .belief-grid,
  .gpt-points,
  .page-card-grid,
  .prompt-list,
  .trust-strip-inner {
    grid-template-columns: 1fr;
  }

  .trust-strip-inner div,
  .trust-strip-inner div:first-child {
    border-left: 0;
    border-top: 1px solid rgba(16, 26, 51, 0.1);
  }

  .trust-strip-inner div:first-child {
    border-top: 0;
  }

  .questions-header,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .persona-visual {
    min-height: 280px;
  }
}
