:root {
  --bg: #000000;
  --panel: #050505;
  --panel-2: #080808;
  --panel-3: #0c0c0c;

  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --gold-line: rgba(240, 193, 90, 0.34);

  --gold: #c88f24;
  --gold-2: #f0c15a;
  --gold-3: #9b6318;

  --teal: #12dec9;
  --teal-soft: #8cf4e8;

  --text: #f4f6f6;
  --muted: #9aa7a6;
  --muted-2: #c3cdcc;

  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: #000;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page {
  padding-bottom: 88px;
  background: #000;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel--gold {
  border-color: var(--gold-line);
  background: var(--panel-2);
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0 0 12px;
  max-width: 940px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  max-width: 880px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.16s ease, opacity 0.16s ease, border-color 0.16s ease;
}

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

.btn--primary {
  color: #fff7e4;
  background: #b87520;
  border: 1px solid rgba(240, 193, 90, 0.34);
  box-shadow: 0 12px 34px rgba(184, 117, 32, 0.28);
}

.btn--secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
}

.card-icon,
.report-row__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--teal);
  border: 1px solid rgba(18, 222, 201, 0.24);
  background: #070707;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
}

.report-row__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--gold-2);
  border-color: rgba(240, 193, 90, 0.34);
  background: #080808;
}

/* HERO */

.hero {
  padding: 34px 0 42px;
  background: #000;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 455px;
  gap: 46px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand__logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(240, 193, 90, 0.18));
  flex-shrink: 0;
}

.brand__name {
  color: var(--gold-2);
  font-size: 35px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand__tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
}

.hero__eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-2);
  font-size: 15px;
  line-height: 1.35;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(18, 222, 201, 0.8);
  flex-shrink: 0;
}

.hero__title {
  margin: 0 0 18px;
  max-width: 800px;
  font-size: clamp(50px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero__lead {
  margin: 0 0 14px;
  max-width: 760px;
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.hero__text {
  margin: 0 0 26px;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 740px;
}

.hero-fact {
  min-height: 48px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d7dfde;
  font-size: 14px;
  line-height: 1.35;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #050505;
}

.hero-fact .icon {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.hero__visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.phone-art {
  position: relative;
  width: min(100%, 490px);
}

.phone-art__image {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 30px 72px rgba(0, 0, 0, 0.72))
    saturate(0.86)
    brightness(0.80);
  -webkit-mask-image: radial-gradient(ellipse at 52% 50%, #000 38%, rgba(0,0,0,.68) 56%, transparent 78%);
  mask-image: radial-gradient(ellipse at 52% 50%, #000 38%, rgba(0,0,0,.68) 56%, transparent 78%);
}

/* DEMO VALUE */

.demo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.value-card {
  min-height: 250px;
  padding: 22px;
}

.value-card h3 {
  margin: 18px 0 9px;
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.center-action {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 280px;
  padding: 22px;
}

.process-card__num {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.process-card h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.13;
  letter-spacing: -0.03em;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

/* REPORT */

.report-list {
  display: grid;
  gap: 10px;
}

.report-row {
  padding: 18px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.report-row h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.report-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

/* PRESSURE */

.pressure-box {
  padding: 30px;
}

.pressure-box__content {
  max-width: 920px;
}

.pressure-box h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pressure-box p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.pressure-box strong {
  display: block;
  margin-top: 18px;
  color: var(--gold-2);
  font-size: 21px;
  line-height: 1.45;
}

/* SAFE */

.safe-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.safe-card {
  min-height: 220px;
  padding: 20px;
}

.safe-card h3 {
  margin: 16px 0 8px;
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.safe-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
}

/* FOUNDER */

.founder-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.founder-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(240, 193, 90, 0.16);
}

.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.12);
  pointer-events: none;
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-main {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-label {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 15px;
}

.founder-main h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.founder-main p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.55;
}

.founder-main p:last-child {
  margin-bottom: 0;
}

.founder-side {
  display: grid;
  gap: 12px;
}

.founder-side__item {
  padding: 20px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  align-items: start;
}

.founder-side__item h3 {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.18;
}

.founder-side__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

/* DYNAMICS */

.dynamics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.dynamic-card {
  min-height: 250px;
  padding: 20px;
}

.dynamic-card__label {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.dynamic-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.dynamic-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.46;
  font-size: 15px;
}

.dynamic-card--accent {
  border-color: rgba(18, 222, 201, 0.32);
}

.dynamics-note {
  margin-top: 12px;
  padding: 22px;
  color: var(--gold-2);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 800;
}

/* PRICING */

.pricing-box {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: stretch;
}

.pricing-main h2 {
  margin: 0 0 14px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.pricing-main h2 span {
  color: var(--teal);
}

.pricing-main p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.pricing-main .pricing-lead {
  color: var(--gold-2);
  font-weight: 800;
}

.pricing-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-box {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(240, 193, 90, 0.38);
  background: #050505;
}

.guarantee-box__title {
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.guarantee-box p {
  margin: 0;
  color: var(--muted-2);
  line-height: 1.5;
}

/* COMPARE */

.compare-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.compare-card {
  min-height: 240px;
  padding: 20px;
}

.compare-card__title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.compare-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
  font-size: 15px;
}

.compare-card--focus {
  border-color: rgba(240, 193, 90, 0.42);
  background: #080808;
}

.compare-card--focus .compare-card__title {
  color: var(--gold-2);
}

/* FINAL */

.final-section {
  padding-bottom: 28px;
}

.final-box {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  display: flex;
  align-items: center;
  background: #000;
}

.final-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/lighthouse.png?v=5");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.82;
}

.final-box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.58);
}

.final-box__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-box h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.final-box p {
  margin: 0 0 12px;
  color: #dce4e3;
  font-size: 18px;
  line-height: 1.55;
}

.final-highlight {
  color: var(--gold-2) !important;
  font-weight: 850;
}

.final-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* STICKY */

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 90;
  width: min(1180px, calc(100% - 24px));
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.74);
  transition: opacity .18s ease, transform .18s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sticky-cta__text strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.sticky-cta__text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.sticky-cta .btn {
  min-width: 158px;
  min-height: 48px;
  flex-shrink: 0;
}

/* TABLET */

@media (max-width: 1180px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 30px;
  }

  .demo-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .safe-grid,
  .dynamics-grid,
  .compare-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .founder-grid,
  .pricing-box {
    grid-template-columns: 1fr;
  }

  .pricing-side {
    max-width: 620px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(760px, calc(100% - 24px));
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__visual {
    justify-content: center;
  }

  .phone-art {
    width: min(100%, 500px);
  }

  .safe-grid,
  .dynamics-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-photo-wrap {
    min-height: 360px;
  }

  .final-box {
    min-height: 560px;
    align-items: flex-end;
  }

  .final-box::after {
    background-position: center top;
    opacity: 0.72;
  }

  .final-box::before {
    background: rgba(0, 0, 0, 0.70);
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .page {
    padding-bottom: 72px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: 24px 0;
  }

  .hero {
    padding: 20px 0 24px;
  }

  .brand {
    gap: 12px;
    margin-bottom: 16px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__name {
    font-size: 31px;
  }

  .brand__tagline {
    font-size: 14px;
    line-height: 1.25;
  }

  .hero__eyebrow {
    margin-bottom: 18px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.4;
  }

  .pulse {
    margin-top: 5px;
  }

  .hero__title {
    margin-bottom: 16px;
    font-size: clamp(39px, 10.7vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .hero__lead {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.42;
  }

  .hero__text {
    margin-bottom: 20px;
    font-size: 16.5px;
    line-height: 1.58;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 16px;
    gap: 8px;
  }

  .hero-fact {
    min-height: 44px;
    font-size: 14px;
  }

  .phone-art {
    width: min(100%, 420px);
    margin-top: 4px;
  }

  .phone-art__image {
    filter:
      drop-shadow(0 22px 54px rgba(0,0,0,.72))
      saturate(.8)
      brightness(.72);
    -webkit-mask-image: radial-gradient(ellipse at 52% 50%, #000 34%, rgba(0,0,0,.58) 52%, transparent 74%);
    mask-image: radial-gradient(ellipse at 52% 50%, #000 34%, rgba(0,0,0,.58) 52%, transparent 74%);
  }

  .section-head {
    margin-bottom: 14px;
  }

  .section-head h2 {
    font-size: 32px;
    line-height: 1.04;
  }

  .section-head p {
    font-size: 16px;
    line-height: 1.5;
  }

  .demo-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-card,
  .process-card,
  .safe-card,
  .dynamic-card,
  .compare-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .value-card h3,
  .process-card h3,
  .safe-card h3,
  .dynamic-card h3 {
    font-size: 20px;
  }

  .center-action {
    justify-content: stretch;
  }

  .center-action .btn {
    width: 100%;
  }

  .process-card__num {
    top: 18px;
    right: 18px;
    font-size: 22px;
  }

  .report-list {
    gap: 10px;
  }

  .report-row {
    padding: 16px;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    border-radius: 22px;
  }

  .report-row__icon {
    width: 44px;
    height: 44px;
  }

  .report-row h3 {
    font-size: 20px;
  }

  .report-row p {
    font-size: 15px;
  }

  .pressure-box {
    padding: 22px;
    border-radius: 22px;
  }

  .pressure-box h2 {
    font-size: 32px;
  }

  .pressure-box p {
    font-size: 16px;
  }

  .pressure-box strong {
    font-size: 18px;
  }

  .btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 13px;
    font-size: 15px;
    white-space: normal;
  }

  .founder-card {
    padding: 14px;
    border-radius: 22px;
  }

  .founder-photo-wrap {
    min-height: 0;
    aspect-ratio: 1 / 1.08;
    border-radius: 20px;
  }

  .founder-main {
    padding: 2px 4px 6px;
  }

  .founder-main h2 {
    font-size: 34px;
  }

  .founder-main p {
    font-size: 15.5px;
  }

  .founder-side__item {
    padding: 16px;
    grid-template-columns: 44px 1fr;
    border-radius: 22px;
  }

  .dynamics-note {
    padding: 18px;
    font-size: 17px;
    border-radius: 22px;
  }

  .pricing-box {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-main h2 {
    font-size: 35px;
  }

  .pricing-main p {
    font-size: 16px;
  }

  .guarantee-box {
    padding: 18px;
  }

  .guarantee-box__title {
    font-size: 21px;
  }

  .compare-card__title {
    font-size: 21px;
  }

  .final-box {
    min-height: 580px;
    padding: 22px;
    border-radius: 24px;
  }

  .final-box::after {
    background-position: 60% top;
    opacity: 0.64;
  }

  .final-box::before {
    background: rgba(0, 0, 0, 0.74);
  }

  .final-box h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .final-box p {
    font-size: 16px;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }

  .sticky-cta {
    width: calc(100% - 18px);
    bottom: max(8px, env(safe-area-inset-bottom));
    padding: 8px;
    border-radius: 16px;
  }

  .sticky-cta__text {
    display: none;
  }

  .sticky-cta .btn {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    font-size: 15px;
  }
}

@media (max-width: 380px) {
  .hero__title {
    font-size: 36px;
  }

  .brand__name {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 30px;
  }
}
/* Founder principles patch */

.founder-section {
  padding-top: 34px;
}

.founder-block {
  padding: 28px;
  overflow: hidden;
}

.founder-block__top {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.founder-photo-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: #050505;
  border: 1px solid rgba(240, 193, 90, 0.22);
}

.founder-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  max-width: 880px;
}

.founder-copy .founder-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 16px;
}

.founder-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.founder-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.founder-copy p:last-child {
  margin-bottom: 0;
}

.principles-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.principles-kicker {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.principle-card {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #030303;
}

.principle-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--gold-2);
  border: 1px solid rgba(240, 193, 90, 0.34);
  background: #070707;
}

.principle-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.principles-summary {
  margin-top: 12px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(240, 193, 90, 0.30);
  background: #070707;
  color: var(--gold-2);
  font-size: 21px;
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: -0.02em;
}

@media (max-width: 920px) {
  .founder-block__top {
    grid-template-columns: 1fr;
  }

  .founder-photo-frame {
    max-width: 420px;
    aspect-ratio: 1 / 1.08;
  }

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

@media (max-width: 640px) {
  .founder-block {
    padding: 18px;
    border-radius: 24px;
  }

  .founder-copy h2 {
    font-size: 38px;
  }

  .founder-copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .principles-block {
    margin-top: 22px;
    padding-top: 20px;
  }

  .principle-card {
    min-height: auto;
    padding: 18px;
  }

  .principle-card h3 {
    font-size: 21px;
  }

  .principles-summary {
    padding: 18px;
    font-size: 18px;
  }
}



/* Text polish patch */

/* Убираем риск переноса цены */
.pricing-main h2 span {
  display: inline-block;
  white-space: nowrap;
}

/* Более ровный и симметричный pricing-блок */
.pricing-box {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
}

.pricing-main h2 {
  max-width: 760px;
}

.pricing-side {
  justify-content: center;
}

.guarantee-box {
  height: auto;
}

/* Акцент в заголовке динамики */
.dynamics-section .section-head h2 span {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-2);
}

/* Делаем блок альтернатив логически центрированным */
.compare-grid {
  grid-template-columns: 0.95fr 0.95fr 1.22fr 0.95fr 0.95fr;
  align-items: stretch;
}

.compare-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.compare-card--focus {
  min-height: 278px;
  transform: translateY(-10px);
  border-color: rgba(240, 193, 90, 0.52);
  background: #080808;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(240, 193, 90, 0.08);
}

.compare-card--focus .compare-card__title {
  color: var(--gold-2);
  font-size: 30px;
}

.compare-card--focus p {
  color: #d7dfde;
  font-size: 16px;
}

/* Sticky CTA: длинный смысл в подписи, понятная кнопка */
.sticky-cta__text {
  max-width: 820px;
}

.sticky-cta__text strong {
  font-size: 15px;
}

.sticky-cta__text span {
  max-width: 820px;
}

.sticky-cta .btn {
  min-width: 240px;
}

/* Адаптив для блока альтернатив */
@media (max-width: 1180px) {
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-card--focus {
    order: -1;
    grid-column: 1 / -1;
    transform: none;
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .pricing-box {
    grid-template-columns: 1fr;
  }

  .pricing-side {
    max-width: none;
  }

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

  .compare-card--focus {
    order: -1;
  }
}

@media (max-width: 640px) {
  .dynamics-section .section-head h2 span {
    margin-top: 6px;
  }

  .pricing-main h2 span {
    white-space: nowrap;
  }

  .compare-card--focus .compare-card__title {
    font-size: 26px;
  }

  .sticky-cta .btn {
    min-width: 0;
    font-size: 14px;
  }
}
