:root {
  color-scheme: dark;
  --bg: #07111c;
  --panel: #0f172a;
  --line: #20324a;
  --text: #ffffff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --green: #22c55e;
  --green-soft: #86efac;
  --blue: #60a5fa;
  --orange: #fb923c;
  --violet: #a5b4fc;
  --radius-lg: 32px;
  --shadow-lg: 0 28px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 8% 3%, rgba(37, 99, 235, 0.16), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(34, 197, 94, 0.13), transparent 25rem),
    linear-gradient(135deg, #07111c 0%, #0b1220 52%, #082015 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.page-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 56px 80px 64px;
}

.section-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(16, 27, 43, 0.96), rgba(15, 23, 42, 0.98) 58%, rgba(11, 42, 32, 0.96));
  box-shadow: var(--shadow-lg);
}

.value--bgless {
  margin-top: 90px;
  padding: 78px 0 70px;
  text-align: center;
}

.value--bgless .formula__result {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.value--bgless .summary-time {
  width: min(860px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.inside--bgless .inside-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.inside--bgless .breakdown-grid {
  width: min(1080px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.hero {
  display: grid;
  min-height: 620px;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 64px 84px;
  text-align: center;
}

.hero::before {
  position: absolute;
  inset: 24px 0 auto;
  width: min(920px, 72vw);
  height: 360px;
  margin: 0 auto;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 40%, rgba(96, 165, 250, 0.24), transparent 34%),
    radial-gradient(circle at 70% 55%, rgba(34, 197, 94, 0.20), transparent 36%);
  filter: blur(12px);
  content: "";
}

.hero::after {
  position: absolute;
  right: 8%;
  bottom: 34px;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.34), transparent);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(54px, 8.2vw, 118px);
  font-weight: 900;
  line-height: 1.02;
}

h1 span {
  display: block;
  margin-top: 18px;
  color: #93b4ff;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(147, 180, 255, 0.16);
}

.hero p {
  max-width: 780px;
  margin: 34px auto 0;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.38;
}

.ticker {
  position: relative;
  overflow: hidden;
  margin: 10px -80px 0;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ticker::before,
.ticker::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 160px;
  content: "";
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, #07111c, transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, #07111c, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.ticker__group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #dbe7f7;
  font-size: 15px;
  font-weight: 720;
  box-shadow: none;
}

.ticker img {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  object-fit: contain;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.value,
.example,
.inside,
.cta {
  margin-top: 90px;
}

.value {
  padding: 78px 90px 70px;
  text-align: center;
}

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

.section-heading h2 {
  color: var(--text);
  font-size: clamp(36px, 4.4vw, 58px);
  font-weight: 850;
  line-height: 1.08;
}

.section-heading p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 220px;
  align-items: center;
  gap: 28px;
  margin-top: 92px;
}

.formula__item strong,
.formula__result strong {
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 860;
  line-height: 1;
}

.formula__item--accent strong {
  color: var(--blue);
}

.formula__item span,
.formula__result span {
  display: block;
  margin-top: 18px;
  color: #e5e7eb;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 780;
}

.formula__operator {
  color: #50627a;
  font-size: 52px;
  font-weight: 600;
}

.formula__result {
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #07111c;
}

.formula__result span {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.15;
}

.summary-time {
  margin-top: 68px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.summary-time span {
  color: var(--green-soft);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-time strong {
  display: block;
  margin-top: 26px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(68px, 9vw, 112px);
  font-weight: 880;
  line-height: 0.95;
}

.summary-time p {
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 780;
}

.summary-time small {
  display: block;
  margin-top: 22px;
  color: var(--soft);
  font-size: 16px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--green-soft);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-preview {
  margin: 44px 0 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: var(--shadow-lg);
}

.summary-preview__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  overflow: hidden;
}

.summary-preview__button img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.summary-preview__button span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 17, 28, 0.78);
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  backdrop-filter: blur(10px);
}

.summary-preview figcaption {
  margin-top: 18px;
  color: var(--soft);
  font-size: 16px;
  text-align: center;
}

.inside-card,
.cta__panel {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #101827 0%, #18314d 55%, #0f3a2a 100%);
  box-shadow: var(--shadow-lg);
}

.inside-card {
  padding: 56px 72px 58px;
  text-align: center;
}

.inside-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 850;
}

.inside-card > p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 178px;
  gap: 18px;
  margin: 60px 0 0;
  padding: 0;
}

.breakdown-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.breakdown-item::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), transparent 48%);
  opacity: 0.78;
  content: "";
}

.breakdown-item strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--text);
  font-size: 26px;
  font-weight: 880;
  line-height: 1.2;
}

.breakdown-item--figures {
  grid-column: span 4;
  background:
    radial-gradient(circle at 78% 20%, rgba(34, 197, 94, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(14, 56, 39, 0.96), rgba(12, 27, 44, 0.94));
}

.breakdown-item--changes {
  grid-column: span 4;
  background:
    radial-gradient(circle at 80% 24%, rgba(129, 140, 248, 0.30), transparent 34%),
    linear-gradient(145deg, rgba(35, 32, 73, 0.96), rgba(12, 27, 44, 0.94));
}

.breakdown-item--risks {
  grid-column: span 4;
  background:
    radial-gradient(circle at 80% 24%, rgba(251, 146, 60, 0.30), transparent 34%),
    linear-gradient(145deg, rgba(64, 33, 20, 0.96), rgba(12, 27, 44, 0.94));
}

.breakdown-item--question {
  grid-column: span 6;
  background:
    radial-gradient(circle at 82% 24%, rgba(96, 165, 250, 0.30), transparent 34%),
    linear-gradient(145deg, rgba(18, 45, 75, 0.96), rgba(12, 27, 44, 0.94));
}

.breakdown-item--next {
  grid-column: span 6;
  background:
    radial-gradient(circle at 82% 24%, rgba(192, 132, 252, 0.30), transparent 34%),
    linear-gradient(145deg, rgba(48, 31, 74, 0.96), rgba(12, 27, 44, 0.94));
}

.breakdown-visual {
  position: relative;
  z-index: 1;
  min-height: 86px;
}

.visual-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 150px;
  padding: 20px 0 0 8px;
}

.visual-chart i {
  display: block;
  width: 38px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #22c55e, #15803d);
  box-shadow: 0 16px 26px rgba(21, 128, 61, 0.22);
}

.visual-chart i:nth-child(1) {
  height: 70px;
}

.visual-chart i:nth-child(2) {
  height: 108px;
}

.visual-chart i:nth-child(3) {
  height: 138px;
}

.visual-docs i {
  position: absolute;
  display: block;
  width: 110px;
  height: 76px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.16);
}

.visual-docs i:nth-child(1) {
  right: 42px;
  top: 6px;
  transform: rotate(-7deg);
}

.visual-docs i:nth-child(2) {
  right: 88px;
  top: 34px;
  transform: rotate(8deg);
}

.visual-docs i:nth-child(3) {
  right: 10px;
  top: 58px;
  transform: rotate(2deg);
}

.visual-risk::before {
  position: absolute;
  top: 8px;
  right: 46px;
  width: 0;
  height: 0;
  border-right: 58px solid transparent;
  border-bottom: 104px solid #fb923c;
  border-left: 58px solid transparent;
  filter: drop-shadow(0 18px 22px rgba(234, 88, 12, 0.22));
  content: "";
}

.visual-risk::after {
  position: absolute;
  top: 68px;
  right: 96px;
  color: #431407;
  font-size: 38px;
  font-weight: 950;
  content: "!";
}

.visual-question::before {
  position: absolute;
  top: 4px;
  right: 56px;
  width: 96px;
  height: 96px;
  border: 14px solid #60a5fa;
  border-radius: 50%;
  box-shadow: 0 18px 26px rgba(37, 99, 235, 0.20);
  content: "";
}

.visual-question::after {
  position: absolute;
  top: 82px;
  right: 42px;
  width: 70px;
  height: 16px;
  border-radius: 999px;
  background: #2563eb;
  transform: rotate(44deg);
  content: "";
}

.visual-next::before {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 122px;
  height: 64px;
  border-top: 16px solid #8b5cf6;
  border-right: 16px solid #8b5cf6;
  border-radius: 0 28px 0 0;
  transform: rotate(-12deg);
  content: "";
}

.visual-next::after {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 36px solid #8b5cf6;
  transform: rotate(-12deg);
  content: "";
}

.cta__panel {
  padding: 58px 48px 32px;
  text-align: center;
}

.cta__panel h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 860;
}

.cta__panel > p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.cta-button {
  margin-top: 34px;
  padding: 19px 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-soft));
  color: #052e16;
  font-size: 20px;
  font-weight: 850;
  box-shadow: 0 18px 35px rgba(34, 197, 94, 0.18);
}

.lead-form {
  max-width: 720px;
  margin: 34px auto 0;
}

.lead-form[hidden] {
  display: none;
}

.lead-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 18px;
  font-weight: 750;
}

.lead-form__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.lead-form input {
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-size: 18px;
}

.lead-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.16);
}

.lead-form button {
  height: 58px;
  padding: 0 24px;
  border-radius: 15px;
  background: var(--green);
  color: #052e16;
  font-size: 18px;
  font-weight: 850;
}

.form-note,
.form-status {
  color: var(--soft);
  font-size: 15px;
}

.form-note {
  margin-top: 18px;
}

.form-status {
  min-height: 20px;
  margin-top: 10px;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
}

.image-modal[hidden] {
  display: none;
}

.image-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.82);
  backdrop-filter: blur(10px);
}

.image-modal__content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: #07111c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.image-modal__content img {
  display: block;
  width: 100%;
  height: auto;
}

.image-modal__close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 17, 28, 0.82);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .page-shell {
    padding: 24px 18px 48px;
  }

  .hero {
    min-height: 560px;
    padding: 60px 22px;
  }

  .ticker {
    margin-right: -18px;
    margin-left: -18px;
  }

  .ticker::before,
  .ticker::after {
    width: 56px;
  }

  .value,
  .example,
  .inside,
  .cta {
    margin-top: 62px;
  }

  .value {
    padding: 52px 20px 46px;
  }

  .value--bgless {
    padding-right: 0;
    padding-left: 0;
  }

  .formula {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 52px;
  }

  .formula__operator {
    font-size: 34px;
    line-height: 1;
  }

  .formula__result {
    width: min(260px, 100%);
    margin: 0 auto;
  }

  .summary-preview {
    margin-right: 0;
    margin-left: 0;
    padding: 8px;
    overflow: hidden;
  }

  .summary-preview__button img {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
  }

  .summary-preview__button span {
    right: 10px;
    bottom: 10px;
    padding: 8px 11px;
    font-size: 13px;
  }

  .inside-card,
  .cta__panel {
    padding: 42px 18px 28px;
  }

  .breakdown-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
    margin-top: 36px;
  }

  .breakdown-item {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .lead-form__row {
    grid-template-columns: 1fr;
  }

  .lead-form button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 520px;
  }

  .summary-time strong {
    font-size: 58px;
  }
}
