:root {
  color-scheme: light;
  --ivory: #f6f0e7;
  --ivory-deep: #eee3d5;
  --paper: #fffdf9;
  --paper-warm: #fbf7f0;
  --ink: #2e2022;
  --ink-soft: #6f6060;
  --muted: #92837f;
  --wine: #6d2038;
  --wine-deep: #481323;
  --wine-light: #91344f;
  --rose: #c98fa1;
  --gold: #b7914d;
  --gold-light: #dbc697;
  --line: rgba(91, 52, 54, 0.15);
  --line-strong: rgba(109, 32, 56, 0.28);
  --shadow-sm: 0 12px 35px rgba(69, 39, 35, 0.08);
  --shadow-lg: 0 30px 80px rgba(69, 39, 35, 0.13);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --page-width: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 5%, rgba(183, 145, 77, 0.08), transparent 25rem),
    linear-gradient(180deg, var(--ivory) 0%, #f9f5ef 45%, var(--ivory) 100%);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
  content: '';
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

button,
a,
input {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: anywhere;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: white;
  background: var(--wine);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(183, 145, 77, 0.65);
  outline-offset: 4px;
}

.page-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(183, 145, 77, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.page-glow::before,
.page-glow::after {
  position: absolute;
  border: 1px solid rgba(183, 145, 77, 0.09);
  border-radius: inherit;
  content: '';
}

.page-glow::before {
  inset: 42px;
}

.page-glow::after {
  inset: 92px;
}

.page-glow--top {
  top: -320px;
  left: -240px;
}

.page-glow--bottom {
  top: 1190px;
  right: -350px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 86px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

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

.brand__mark {
  position: relative;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  transform: rotate(45deg);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span {
  position: absolute;
  border: 1px solid var(--gold);
  content: '';
}

.brand__mark::before {
  inset: 2px;
}

.brand__mark::after {
  width: 70%;
  height: 70%;
  border-radius: 50%;
}

.brand__mark span:first-child {
  width: 4px;
  height: 4px;
  background: var(--wine);
  border: 0;
  border-radius: 50%;
}

.brand__mark span:last-child {
  width: 1px;
  height: 42px;
  background: rgba(183, 145, 77, 0.6);
  border: 0;
}

.brand__name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.4px;
}

.brand__name i {
  color: var(--wine);
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: '';
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .text-link {
  color: var(--wine);
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 720px;
  margin: 0 auto;
  padding: 72px 0 82px;
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: start;
  padding-top: 38px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow__spark {
  color: var(--gold);
  font-size: 13px;
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 24px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.35vw, 82px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em,
.about h2 em {
  color: var(--wine);
  font-weight: 400;
}

.hero__lead {
  max-width: 590px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.72;
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 38px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__facts span {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero__facts strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: normal;
}

.hero__quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 430px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero__quote-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.8;
}

.hero__quote p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}

.hero__visual {
  position: absolute;
  top: 72px;
  right: 380px;
  width: 330px;
  height: 330px;
  opacity: 0.62;
  pointer-events: none;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(183, 145, 77, 0.34);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(183, 145, 77, 0.18);
  content: '';
  transform: translate(-50%, -50%);
}

.orbit::before {
  width: 100%;
  height: 1px;
}

.orbit::after {
  width: 1px;
  height: 100%;
}

.orbit--outer {
  inset: 0;
}

.orbit--middle {
  inset: 38px;
  transform: rotate(45deg);
}

.orbit--inner {
  inset: 104px;
  background: rgba(255, 253, 249, 0.45);
}

.hero-symbol {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--wine);
}

.hero-symbol__number {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1;
}

.hero-symbol__caption {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.orbit-dot,
.orbit-star {
  position: absolute;
  color: var(--gold);
}

.orbit-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.orbit-dot--one {
  top: 48px;
  left: 51px;
}

.orbit-dot--two {
  right: 20px;
  bottom: 96px;
}

.orbit-star--one {
  top: 24px;
  right: 76px;
}

.orbit-star--two {
  bottom: 22px;
  left: 93px;
  font-size: 20px;
}

.calculator-card {
  position: relative;
  z-index: 3;
  padding: clamp(30px, 4vw, 44px);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(109, 32, 56, 0.1);
  box-shadow: var(--shadow-lg);
}

.calculator-card::before,
.calculator-card::after {
  position: absolute;
  width: 44px;
  height: 44px;
  content: '';
  pointer-events: none;
}

.calculator-card::before {
  top: 12px;
  left: 12px;
  border-top: 1px solid var(--gold-light);
  border-left: 1px solid var(--gold-light);
}

.calculator-card::after {
  right: 12px;
  bottom: 12px;
  border-right: 1px solid var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
}

.calculator-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.step-label,
.premium-label,
.price-card__eyebrow {
  color: var(--wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
}

.privacy-badge svg {
  width: 14px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.calculator-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.calculator-card__intro {
  margin: 13px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
}

.field + .field {
  margin-top: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.field__control {
  position: relative;
}

.field__control svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 19px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transform: translateY(-50%);
  pointer-events: none;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px 13px 48px;
  color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 16px;
  outline: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field input::placeholder {
  color: #aa9c98;
}

.field input:hover {
  border-color: rgba(109, 32, 56, 0.24);
}

.field input:focus {
  background: white;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183, 145, 77, 0.12);
}

.field input[aria-invalid='true'] {
  background: #fff9f8;
  border-color: #b84949;
}

.field__error {
  display: block;
  min-height: 18px;
  margin-top: 5px;
  color: #a43838;
  font-size: 11px;
}

.form-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
  cursor: pointer;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--wine);
}

.form-consent input[aria-invalid='true'] {
  outline: 2px solid #b84949;
  outline-offset: 2px;
}

.form-consent a,
.legal-document a,
.footer-links a,
.footer-links button {
  color: var(--wine);
  text-decoration: underline;
  text-decoration-color: rgba(109, 32, 56, 0.3);
  text-underline-offset: 3px;
}

.form-consent__error {
  margin-top: -8px;
}

.form-status {
  min-height: 0;
  margin: 0;
  color: #a43838;
  font-size: 12px;
}

.form-status:not(:empty) {
  min-height: 20px;
  margin-bottom: 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 56px;
  padding: 14px 22px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.025em;
  transition: box-shadow 220ms ease, transform 220ms var(--ease), background 220ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--wide {
  width: 100%;
}

.button--primary {
  color: white;
  background: var(--wine);
  box-shadow: 0 10px 24px rgba(109, 32, 56, 0.19);
}

.button--primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 15px 30px rgba(109, 32, 56, 0.23);
}

.button--secondary {
  color: var(--wine);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button--secondary:hover {
  background: rgba(109, 32, 56, 0.06);
}

.button:disabled,
.button:disabled:hover {
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.72;
  transform: none;
}

.button__icon {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.calculator-card__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 10px;
}

.calculator-card__note span {
  color: var(--gold);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: rgba(255, 253, 249, 0.64);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 114px;
  padding: 25px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item__icon {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  background: var(--paper);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  place-items: center;
}

.trust-item__icon svg {
  width: 19px;
  fill: none;
  stroke: var(--wine);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.trust-item > span:last-child {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.result-section {
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
  padding: 110px 0 124px;
}

.result-section[hidden] {
  display: none;
}

.result-section.is-revealed {
  animation: reveal 780ms var(--ease) both;
}

.section-kicker {
  justify-content: center;
  color: var(--gold);
}

.result-section > h2 {
  max-width: 800px;
  margin: 16px auto 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.05;
  text-align: center;
}

.section-lead {
  margin: 0 0 48px;
  color: var(--muted);
  text-align: center;
}

.result-board {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(290px, 0.65fr);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.matrix-card {
  padding: 32px clamp(24px, 4vw, 48px) 28px;
}

.matrix-card__topline,
.matrix-legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.matrix-card__topline > span:first-child {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.matrix-card__hint {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.matrix-card__hint i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.matrix-wrap {
  width: min(100%, 560px);
  margin: 5px auto 0;
  aspect-ratio: 1;
}

.matrix-diagram {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.matrix-diagram__halo {
  fill: rgba(183, 145, 77, 0.018);
  stroke: rgba(183, 145, 77, 0.18);
  stroke-dasharray: 2 8;
}

.matrix-diagram__line,
.matrix-diagram__ring {
  fill: none;
  stroke: rgba(183, 145, 77, 0.34);
  stroke-width: 1;
}

.matrix-diagram__line--strong {
  stroke: rgba(109, 32, 56, 0.4);
}

.matrix-diagram__line--soft {
  stroke: rgba(183, 145, 77, 0.15);
}

.matrix-diagram__ring {
  stroke-dasharray: 2 7;
}

.matrix-node {
  color: var(--wine);
  cursor: default;
  text-align: center;
}

.matrix-node circle:not(.matrix-node__pulse) {
  fill: var(--paper);
  stroke: var(--gold);
  stroke-width: 1.5;
  transition: filter 240ms ease, transform 240ms var(--ease);
}

.matrix-node:hover circle:not(.matrix-node__pulse),
.matrix-node:focus-visible circle:not(.matrix-node__pulse),
.matrix-node.is-active circle:not(.matrix-node__pulse) {
  filter: drop-shadow(0 7px 8px rgba(109, 32, 56, 0.15));
  transform: scale(1.08);
}

.matrix-node.is-active:not(.matrix-node--center) circle:not(.matrix-node__pulse) {
  fill: #fff8eb;
  stroke: var(--wine);
}

.matrix-node:focus-visible {
  outline: none;
}

.matrix-node__value,
.matrix-node__label,
.matrix-node__center-label {
  text-anchor: middle;
}

.matrix-node__value {
  fill: var(--wine);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.matrix-node__label,
.matrix-node__center-label {
  fill: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matrix-node--inner .matrix-node__value {
  font-size: 15px;
}

.matrix-node--center .matrix-node__value {
  fill: white;
  font-size: 34px;
  font-weight: 400;
}

.matrix-node--center circle:not(.matrix-node__pulse) {
  fill: url('#centerGlow');
  stroke: var(--gold-light);
}

.matrix-node__pulse {
  fill: rgba(109, 32, 56, 0.035);
  stroke: rgba(109, 32, 56, 0.16);
  transform-origin: center;
  animation: pulse 3.5s ease-in-out infinite;
}

.matrix-legend {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 9px;
}

.matrix-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.matrix-legend__dot {
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.matrix-legend__dot--main {
  background: var(--wine);
  border-color: var(--wine);
}

.center-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 52px clamp(26px, 4vw, 48px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 50% 35%, rgba(202, 143, 161, 0.18), transparent 38%),
    linear-gradient(155deg, #721f3c, var(--wine-deep));
  text-align: center;
}

.center-card::before,
.center-card::after {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(219, 198, 151, 0.15);
  content: '';
  transform: rotate(45deg);
}

.center-card::before {
  top: -170px;
  right: -130px;
}

.center-card::after {
  bottom: -180px;
  left: -140px;
}

.center-card__label {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.center-card__number {
  display: grid;
  width: 96px;
  height: 96px;
  margin: 23px 0 18px;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(219, 198, 151, 0.48);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 49px;
  place-items: center;
}

.center-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.center-card > p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.75;
}

.center-card__divider {
  position: relative;
  width: 100%;
  margin: 29px 0 22px;
  color: var(--gold-light);
  font-size: 9px;
}

.center-card__divider::before,
.center-card__divider::after {
  position: absolute;
  top: 50%;
  width: calc(50% - 17px);
  height: 1px;
  background: rgba(219, 198, 151, 0.23);
  content: '';
}

.center-card__divider::before {
  left: 0;
}

.center-card__divider::after {
  right: 0;
}

.center-card .center-card__caption {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.free-reading {
  padding: 76px 0 10px;
}

.free-reading__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 29px;
}

.free-reading__heading h3 {
  margin: 9px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px 13px;
  color: #66734e;
  background: rgba(126, 145, 92, 0.1);
  border: 1px solid rgba(126, 145, 92, 0.18);
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
}

.free-badge i {
  font-style: normal;
}

.reading-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reading-card {
  position: relative;
  min-height: 245px;
  padding: 34px clamp(28px, 4vw, 44px) 38px;
  background: rgba(255, 253, 249, 0.52);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 250ms ease, transform 250ms var(--ease);
}

.reading-card:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.reading-card--featured {
  background: rgba(109, 32, 56, 0.035);
}

.reading-card__number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  font-style: italic;
}

.reading-card__icon {
  position: absolute;
  top: 27px;
  right: 30px;
  display: grid;
  width: 39px;
  height: 39px;
  color: var(--wine);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  font-family: var(--serif);
  place-items: center;
}

.reading-card h4 {
  margin: 25px 0 12px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.reading-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.72;
}

.premium-offer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 30px;
  margin-top: 88px;
  padding: clamp(38px, 5vw, 64px);
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 10%, rgba(202, 143, 161, 0.15), transparent 28rem),
    linear-gradient(135deg, #59172e, #35101d);
  box-shadow: var(--shadow-lg);
}

.premium-offer > *,
.price-card {
  min-width: 0;
}

.premium-offer::before {
  position: absolute;
  top: 13px;
  right: 13px;
  bottom: 13px;
  left: 13px;
  border: 1px solid rgba(219, 198, 151, 0.18);
  content: '';
  pointer-events: none;
}

.premium-offer__ornament {
  position: absolute;
  top: -94px;
  left: -69px;
  display: grid;
  width: 230px;
  height: 230px;
  color: rgba(219, 198, 151, 0.2);
  border: 1px solid rgba(219, 198, 151, 0.13);
  border-radius: 50%;
  font-size: 30px;
  place-items: center;
}

.premium-offer__copy {
  position: relative;
  z-index: 1;
}

.premium-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
}

.premium-label i {
  font-size: 15px;
  font-style: normal;
}

.premium-offer h3 {
  max-width: 600px;
  margin: 16px 0;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.premium-offer__copy > p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.72;
}

.premium-topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin-top: 27px;
}

.premium-topics > div {
  display: grid;
  grid-template-columns: 27px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-topics > div > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
}

.premium-topics p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.premium-topics strong {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
}

.premium-topics small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

.premium-topics > div > i {
  color: rgba(219, 198, 151, 0.47);
  font-style: normal;
}

.price-card {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 37px 31px 30px;
  color: var(--ink);
  background: var(--ivory);
  text-align: center;
}

.price-card__eyebrow {
  color: var(--wine);
}

.price-card__price {
  margin: 12px 0 0;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.price-card__price small {
  font-size: 26px;
}

.price-card > p {
  margin: 9px 0 24px;
  color: var(--muted);
  font-size: 9px;
}

.button--light {
  color: white;
  background: var(--wine);
}

.button--light:hover {
  background: var(--wine-deep);
}

.price-card__availability {
  display: block;
  margin: 11px 0 24px;
  color: var(--muted);
  font-size: 9px;
}

.price-card .button:disabled {
  color: rgba(255, 255, 255, 0.9);
  background: #805266;
}

.price-card__guarantee {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.price-card__guarantee > span {
  color: var(--gold);
}

.price-card__guarantee p {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.price-card__guarantee strong {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
}

.price-card__guarantee small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.new-calculation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 29px auto 0;
  padding: 8px 0;
  color: var(--wine);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(109, 32, 56, 0.3);
  cursor: pointer;
  font-size: 12px;
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 110px);
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
  padding: 115px 0 100px;
  border-top: 1px solid var(--line);
}

.about__intro {
  align-self: start;
}

.about h2 {
  margin: 17px 0 23px;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 57px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.about__intro > p {
  max-width: 480px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.78;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}

.method-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.method-steps li > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

.method-steps div {
  display: flex;
  flex-direction: column;
}

.method-steps strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.method-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.disclaimer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 31px 1fr;
  gap: 17px;
  margin-top: -20px;
  padding: 24px 28px;
  background: rgba(183, 145, 77, 0.065);
  border: 1px solid rgba(183, 145, 77, 0.17);
}

.disclaimer__icon {
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--gold);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  font-family: var(--serif);
  font-style: italic;
  place-items: center;
}

.disclaimer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.disclaimer strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
}

.legal-body {
  min-height: 100vh;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--page-width));
  min-height: 86px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.legal-page {
  width: min(calc(100% - 48px), 820px);
  margin: 0 auto;
  padding: 72px 0 88px;
}

.legal-document {
  padding: clamp(28px, 5vw, 64px);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.legal-document h1 {
  max-width: 700px;
  margin: 14px 0 10px;
  color: var(--wine-deep);
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 62px);
  font-weight: 500;
  line-height: 1.02;
}

.legal-document__date {
  margin: 0 0 46px;
  color: var(--muted);
  font-size: 12px;
}

.legal-document section + section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 29px);
  font-weight: 500;
  line-height: 1.2;
}

.legal-document p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-document p + p {
  margin-top: 14px;
}

.legal-document code {
  color: var(--wine-deep);
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.legal-requisites {
  margin-top: 36px;
  padding: 24px;
  color: var(--ink-soft);
  background: var(--paper-warm);
  border: 1px solid var(--line);
  font-style: normal;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-requisites strong {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  min-height: 118px;
  padding: 26px max(24px, calc((100% - var(--page-width)) / 2));
  color: var(--muted);
  background: #efe6db;
  border-top: 1px solid var(--line);
  font-size: 10px;
}

.footer-links {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  font-size: 11px;
}

.footer-links button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.legal-footer {
  grid-template-columns: 1fr;
}

.legal-footer .footer-links {
  grid-column: 1;
  grid-row: 1;
}

.legal-footer .site-footer__copy {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.brand--footer .brand__name {
  color: var(--ink);
  font-size: 18px;
}

.brand--footer .brand__mark {
  width: 23px;
  height: 23px;
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.site-footer__copy {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.ad-placement {
  width: 100%;
  min-width: 0;
  margin-top: 48px;
  overflow: hidden;
}

.ad-placement[hidden],
.cookie-banner[hidden] {
  display: none !important;
}

.ad-placement__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: min(560px, calc(100% - 40px));
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--wine);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cookie-banner__actions .button {
  min-height: 44px;
  padding: 10px 18px;
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 20;
  padding: 16px 20px;
  color: white;
  background: var(--wine-deep);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@media (max-width: 1080px) {
  .hero {
    gap: 50px;
  }

  .hero__visual {
    right: 330px;
    width: 280px;
    height: 280px;
  }

  .result-board {
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, 0.75fr);
  }

  .premium-offer {
    grid-template-columns: 1fr 310px;
  }
}

@media (max-width: 860px) {
  .site-nav a:not(.text-link) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 55px 0 70px;
  }

  .hero__content {
    padding-top: 0;
  }

  .hero__visual {
    top: 55px;
    right: -100px;
    width: 340px;
    height: 340px;
    opacity: 0.35;
  }

  .calculator-card {
    width: min(100%, 610px);
    justify-self: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: auto;
    padding: 22px max(24px, calc((100% - 610px) / 2));
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .result-board {
    grid-template-columns: 1fr;
  }

  .center-card {
    min-height: 470px;
  }

  .premium-offer {
    grid-template-columns: 1fr;
  }

  .price-card {
    width: min(100%, 460px);
    justify-self: center;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .disclaimer {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header,
  .legal-header,
  .hero,
  .result-section,
  .about {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .site-header {
    min-height: 72px;
  }

  .legal-header {
    min-height: 72px;
  }

  .legal-header .text-link {
    font-size: 11px;
  }

  .brand__name {
    font-size: 19px;
  }

  .brand__mark {
    width: 25px;
    height: 25px;
  }

  .site-nav {
    font-size: 12px;
  }

  .hero {
    gap: 42px;
    padding: 44px 0 58px;
  }

  .hero h1 {
    margin-top: 19px;
    font-size: clamp(44px, 14.8vw, 63px);
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__facts {
    gap: 12px 18px;
    margin-top: 28px;
  }

  .hero__facts span {
    font-size: 9px;
  }

  .hero__facts strong {
    font-size: 22px;
  }

  .hero__quote {
    margin-top: 25px;
  }

  .calculator-card {
    padding: 32px 22px 28px;
  }

  .calculator-card__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .trust-item {
    padding-right: 20px;
    padding-left: 20px;
  }

  .result-section {
    padding: 80px 0 90px;
  }

  .section-lead {
    margin-bottom: 34px;
  }

  .matrix-card {
    padding: 24px 13px 22px;
  }

  .matrix-card__topline {
    padding: 0 8px;
  }

  .matrix-card__hint {
    display: none;
  }

  .matrix-wrap {
    margin-top: 8px;
  }

  .matrix-legend {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .center-card {
    min-height: 440px;
    padding: 48px 28px;
  }

  .free-reading {
    padding-top: 59px;
  }

  .free-reading__heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .reading-card {
    min-height: 220px;
  }

  .premium-offer {
    margin-top: 64px;
    padding: 46px 28px 38px;
  }

  .premium-topics {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 31px 22px 26px;
  }

  .about {
    padding: 87px 0 75px;
  }

  .method-steps li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .disclaimer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 13px;
    padding-top: 34px;
    padding-bottom: 34px;
    text-align: center;
  }

  .footer-links {
    grid-column: 1;
    grid-row: auto;
    flex-direction: column;
  }

  .legal-page {
    width: min(calc(100% - 32px), 820px);
    padding: 42px 0 60px;
  }

  .site-footer .brand,
  .site-footer__copy {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 17px;
  }

  .cookie-banner__actions {
    flex-direction: column;
  }

  .cookie-banner__actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__facts span:last-child {
    grid-column: 1 / -1;
  }

  .matrix-card {
    padding-right: 7px;
    padding-left: 7px;
  }

  .premium-offer {
    padding-right: 22px;
    padding-left: 22px;
  }
}

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