:root {
  --bg-0: #020202;
  --bg-1: #090909;
  --bg-2: #131313;
  --line: #2a2418;
  --line-soft: rgba(218, 167, 72, 0.24);
  --text-strong: #f8f4eb;
  --text-body: #d7ccb6;
  --text-muted: #a99c86;
  --gold-main: #daa748;
  --gold-deep: #c9922e;
  --gold-soft: #edd39c;
  --radius-tight: 8px;
  --radius-panel: 16px;
  --shadow-soft: 0 24px 52px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--bg-0);
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Instrument Sans", "Helvetica Neue", sans-serif;
  color: var(--text-body);
  background:
    radial-gradient(circle at 8% 0%, rgba(218, 167, 72, 0.13), transparent 40%),
    radial-gradient(circle at 94% 18%, rgba(218, 167, 72, 0.06), transparent 34%),
    linear-gradient(165deg, var(--bg-0) 0%, #070707 42%, #0e1014 100%);
  min-height: 100vh;
  line-height: 1.62;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.5px, transparent 0.5px);
  background-size: 2px 2px;
  opacity: 0.06;
  z-index: 1;
}

.site-shell {
  position: relative;
  z-index: 2;
}

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

a {
  color: inherit;
}

.topbar {
  width: 100%;
  margin: 0;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(218, 167, 72, 0.16);
  backdrop-filter: blur(11px);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.68));
}

.topbar-inner {
  width: min(1220px, calc(100% - 2.6rem));
  margin: 0 auto;
  padding: 1rem 0 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  width: auto;
  height: 31px;
  margin-bottom: 5px;
  max-width: none;
  display: block;
  object-fit: contain;
  object-position: center;
}

.section {
  width: min(1220px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.8rem) 0;
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(218, 167, 72, 0.24) 0%,
    rgba(218, 167, 72, 0.18) 62%,
    rgba(218, 167, 72, 0.12) 100%
  );
}

.hero {
  padding-top: clamp(3.8rem, 9vw, 5.6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.2rem, 2.5vw, 2.6rem);
  align-items: start;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold-soft);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text-strong);
}

h1 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(2.2rem, 5.2vw, 5.25rem);
  line-height: 0.93;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 span {
  display: block;
}

h1 span:last-child {
  color: var(--gold-soft);
  margin-left: min(3.4rem, 7vw);
}

.lead {
  margin: 1.55rem 0 0;
  max-width: 60ch;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem 1rem;
  align-items: center;
  justify-content: flex-start;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  display: grid;
  gap: 0.4rem;
  text-align: left;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.44rem;
  position: relative;
  padding-left: 0;
}

.trust-list li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold-main);
  box-shadow: 0 0 0 4px rgba(218, 167, 72, 0.16);
}

.hero-metrics {
  margin-top: 0;
  padding-top: 0;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-metrics article {
  border: 1px solid rgba(218, 167, 72, 0.25);
  border-radius: var(--radius-tight);
  padding: 0.72rem 0.8rem;
  background: linear-gradient(160deg, rgba(24, 20, 13, 0.64), rgba(9, 9, 9, 0.8));
}

.metric-label,
.metric-value {
  margin: 0;
}

.metric-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.metric-value {
  margin-top: 0.32rem;
  font-size: 0.92rem;
  color: var(--text-strong);
  font-weight: 600;
}

.hero-media {
  margin: 0;
  border: 1px solid rgba(218, 167, 72, 0.22);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: #080808;
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: clamp(420px, 50vw, 600px);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(108deg, rgba(2, 2, 2, 0.73) 8%, rgba(8, 8, 8, 0.24) 54%, rgba(218, 167, 72, 0.18) 120%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-media figcaption {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 2;
  border-left: 2px solid var(--gold-main);
  padding: 0.9rem 0.95rem;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(7px);
}

.hero-media figcaption strong {
  display: block;
  color: var(--gold-soft);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media figcaption span {
  display: block;
  margin-top: 0.44rem;
  font-size: 0.93rem;
}

.section-intro {
  margin: 0 0 1.5rem;
  color: var(--text-body);
  font-size: 1.04rem;
}

.icp-grid,
.pillar-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.icp-grid {
  isolation: isolate;
  overflow: visible;
  margin: 2.6rem 0;
}

.icp-card,
.pillar,
.price-card,
.method-card,
.impact-card,
.founder-card,
.proof-card {
  background: linear-gradient(158deg, rgba(21, 17, 12, 0.78), rgba(12, 12, 12, 0.94));
  border: 1px solid rgba(218, 167, 72, 0.18);
  border-radius: var(--radius-panel);
  padding: 1.35rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.icp-card,
.pillar,
.price-card,
.method-card {
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.icp-card:hover,
.pillar:hover,
.price-card:hover,
.method-card:hover {
  transform: translateY(-2px);
  border-color: rgba(218, 167, 72, 0.4);
  background: linear-gradient(160deg, rgba(30, 23, 14, 0.86), rgba(12, 12, 12, 0.96));
}

.icp-card:hover {
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(218, 167, 72, 0.22), 0 8px 30px rgba(218, 167, 72, 0.16);
}

.icp-card {
  border-left: 0;
  padding-top: 1.2rem;
}

.icp-card h3,
.pillar h3,
.method-card h3,
.price-card h3,
.proof-copy h3,
.impact-card h3,
.founder-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.62rem;
}

.icp-icon {
  width: 2.45rem;
  height: 2.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(218, 167, 72, 0.42);
  background: radial-gradient(circle at 35% 30%, rgba(218, 167, 72, 0.24), rgba(10, 10, 10, 0.95) 72%);
}

.icp-icon svg {
  width: 1.32rem;
  height: 1.32rem;
  fill: none;
  stroke: var(--gold-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.icp-qualifier {
  margin: 0.85rem 0 0;
  color: var(--gold-soft);
  font-size: 0.84rem;
}

.icp-cta {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.section-head {
  margin-bottom: 1.5rem;
}

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

.section-head h2 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: 1.04;
  max-width: 17ch;
  text-wrap: balance;
}

.section-head p {
  margin: 0.84rem 0 0;
  max-width: 66ch;
}

.section-head-center h2,
.section-head-center p {
  margin-left: auto;
  margin-right: auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1.25rem;
}

.problem-cards {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.problem-item {
  border: 1px solid rgba(218, 167, 72, 0.18);
  border-radius: var(--radius-tight);
  padding: 0.95rem 1rem;
  background: linear-gradient(160deg, rgba(20, 16, 10, 0.74), rgba(10, 10, 10, 0.9));
}

.problem-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  border: 0;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.48rem;
  background: transparent;
}

.problem-icon svg {
  width: 1.82rem;
  height: 1.82rem;
  fill: none;
  stroke: var(--gold-soft);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problem-item h3 {
  margin: 0 0 0.38rem;
  font-size: 0.94rem;
}

.problem-item p {
  margin: 0;
  font-size: 0.87rem;
  color: var(--text-muted);
}

.impact-card p {
  margin: 0.74rem 0;
}

.impact-card {
  padding: 1.8rem 1.9rem;
  min-height: 100%;
}

.impact-card h3 {
  font-size: 1.52rem;
  margin-bottom: 1.02rem;
}

.pillar-grid {
  position: relative;
}

.mechanism-flow {
  margin: 1.1rem 0 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  position: relative;
}

.mechanism-flow::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 1.05rem;
  height: 1px;
  background: linear-gradient(to right, rgba(218, 167, 72, 0.12), rgba(218, 167, 72, 0.55), rgba(218, 167, 72, 0.12));
}

.flow-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.44rem;
}

.flow-node span {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(218, 167, 72, 0.58);
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  font-weight: 700;
  background: #111;
}

.flow-node p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pillar {
  text-align: center;
}

.pillar-icon {
  width: 2.2rem;
  height: 2.2rem;
  margin: 0 auto 0.72rem;
  border-radius: 50%;
  border: 1px solid rgba(218, 167, 72, 0.42);
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(218, 167, 72, 0.24), rgba(10, 10, 10, 0.95) 72%);
}

.pillar-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: var(--gold-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.method-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-no {
  margin: 0 0 1.15rem;
  font-family: "Bodoni Moda", "Times New Roman", serif;
  color: rgba(218, 167, 72, 0.72);
  font-size: 2.3rem;
  line-height: 0.8;
}

.output {
  margin: 1rem 0 0;
  color: var(--text-muted);
  border-top: 1px solid rgba(218, 167, 72, 0.14);
  padding-top: 0.8rem;
  font-size: 0.92rem;
}

.mid-cta {
  margin-top: 1.3rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(218, 167, 72, 0.28);
  border-radius: var(--radius-panel);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(145deg, rgba(19, 16, 12, 0.74), rgba(8, 8, 8, 0.84));
}

.mid-cta p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.visual-break {
  padding-top: 2.2rem;
  padding-bottom: 2.4rem;
}

.visual-break-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.visual-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-panel);
  border: 1px solid rgba(218, 167, 72, 0.2);
  background: #080808;
  position: relative;
  aspect-ratio: 16 / 10;
}

.visual-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.84rem 0.88rem 0.9rem;
  font-size: 0.83rem;
  color: var(--text-strong);
  background: linear-gradient(to top, rgba(6, 6, 6, 0.9), rgba(6, 6, 6, 0.06));
}

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

.proof-card,
.founder-card {
  padding: 0;
  overflow: hidden;
}

.proof-card img,
.founder-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
}

.proof-copy,
.founder-card div {
  padding: 1.05rem 1.1rem 1.25rem;
}

.founder-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
}

.founder-card img {
  height: 100%;
  min-height: 250px;
  aspect-ratio: auto;
}

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

.pricing-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
}

.price-card {
  display: grid;
  gap: 0.95rem;
  padding: 2rem 2rem 3rem;
}

.price-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.price-step {
  margin: 0;
  align-self: flex-start;
  justify-self: flex-start;
  display: inline-flex;
  border: 1px solid rgba(218, 167, 72, 0.4);
  border-radius: 999px;
  padding: 0.22rem 0.64rem;
  color: var(--gold-soft);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.price-subtitle {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.price-card h3 {
  font-size: 1.18rem;
}

.price {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  margin: 0.1rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #d8bf8c;
  line-height: 1;
  white-space: nowrap;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.54rem;
}

.price-list li {
  position: relative;
  padding-left: 1.9rem;
  line-height: 1.45;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.06rem;
  height: 1.06rem;
  border-radius: 50%;
  border: 1px solid rgba(218, 167, 72, 0.7);
}

.price-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 50%;
  width: 0.44rem;
  height: 0.24rem;
  transform: translateY(-58%) rotate(-45deg);
  border-left: 2px solid var(--gold-main);
  border-bottom: 2px solid var(--gold-main);
}

.qualifier {
  margin: 1.08rem 0 0;
  border: 1px solid rgba(201, 146, 46, 0.52);
  background: rgba(84, 53, 11, 0.2);
  color: #f0d8ac;
  border-radius: var(--radius-tight);
  padding: 0.84rem 0.98rem;
}

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

.faq-item {
  border: 1px solid rgba(218, 167, 72, 0.18);
  border-radius: var(--radius-tight);
  padding: 0 1rem;
  background: rgba(9, 9, 9, 0.68);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--text-strong);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  padding: 0.95rem 0;
  position: relative;
  padding-right: 2rem;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-main);
  font-size: 1.2rem;
  transition: transform 0.24s ease;
}

.faq-item.is-open .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer p {
  margin: 0 0 0.95rem;
  max-width: 72ch;
}

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

.final-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1.1rem, 2.5vw, 2rem);
  border: 1px solid rgba(218, 167, 72, 0.4);
  border-radius: var(--radius-panel);
  background:
    radial-gradient(circle at 50% 0%, rgba(218, 167, 72, 0.2), rgba(9, 9, 9, 0.92) 58%),
    linear-gradient(150deg, rgba(16, 13, 9, 0.82), rgba(9, 9, 9, 0.96));
}

.final-wrap h2 {
  font-family: "Bodoni Moda", "Times New Roman", serif;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  line-height: 1.02;
}

.final-wrap p {
  max-width: 58ch;
  margin: 1.05rem auto 0;
}

.final-wrap .btn {
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(110% 160% at 20% 0%, rgba(255, 255, 255, 0.28), transparent 42%);
  opacity: 0.18;
  z-index: -1;
}

.btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 30%;
  height: 240%;
  transform: rotate(24deg);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.24), transparent);
  opacity: 0;
  transition: left 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  left: 120%;
  opacity: 0.45;
}

.btn:focus-visible,
.faq-question:focus-visible {
  outline: 2px solid var(--gold-main);
  outline-offset: 2px;
}

.btn-primary {
  color: #12100a;
  border-color: rgba(218, 167, 72, 0.72);
  background: linear-gradient(175deg, #e6be6a 0%, var(--gold-main) 58%, var(--gold-deep) 100%);
  box-shadow: 0 11px 24px rgba(201, 146, 46, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #eac26f 0%, #deb154 68%, var(--gold-deep) 100%);
}

.btn-outline {
  border-color: rgba(218, 167, 72, 0.55);
  color: var(--gold-soft);
  background: rgba(18, 16, 12, 0.76);
}

.btn-outline:hover {
  border-color: rgba(218, 167, 72, 0.82);
  background: rgba(218, 167, 72, 0.16);
}

.btn-topbar {
  min-height: 44px;
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
  width: auto;
  margin-bottom: 2px;
}

.footer {
  width: min(1220px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--text-muted);
  font-size: 0.89rem;
}

.reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.reveal.is-visible [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .section {
    padding: clamp(3.6rem, 8vw, 5.2rem) 0;
  }

  .hero-grid,
  .problem-grid,
  .proof-grid,
  .founder-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 0;
  }

  .hero-media img {
    min-height: 430px;
  }

  .pillar-grid,
  .method-track,
  .icp-grid,
  .pricing-grid,
  .visual-break-grid,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-card {
    grid-column: auto;
  }

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

  .mechanism-flow::before {
    left: 9%;
    right: 9%;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding-top: 0.72rem;
    padding-bottom: 0.68rem;
  }

  .topbar-inner {
    width: calc(100% - 1.25rem);
    padding-top: 0;
    padding-bottom: 0;
  }

  .brand {
    min-height: 25px;
  }

  .brand-logo {
    height: 25px;
  }

  .section {
    width: calc(100% - 1.25rem);
    padding: 4rem 0;
  }

  h1 span:last-child {
    margin-left: 0;
  }

  .lead {
    margin-top: 1.35rem;
    font-size: 0.98rem;
  }

  .pillar-grid,
  .method-track,
  .problem-cards,
  .icp-grid,
  .pricing-grid,
  .visual-break-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .mechanism-flow {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mechanism-flow::before {
    left: 1.03rem;
    right: auto;
    width: 1px;
    top: 1.2rem;
    bottom: 1.2rem;
    height: auto;
  }

  .flow-node {
    justify-items: start;
    grid-template-columns: auto 1fr;
    column-gap: 0.75rem;
    align-items: center;
    display: grid;
  }

  .flow-node p {
    text-align: left;
  }

  .price-head {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero {
    padding-top: 3.4rem;
  }

  .hero-media img {
    min-height: 350px;
  }

  .section-head h2,
  .final-wrap h2 {
    max-width: 100%;
  }

  .btn {
    width: 100%;
  }

  .btn-topbar {
    width: auto;
  }

  .hero-actions,
  .mid-cta {
    width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .trust-list {
    gap: 0.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
