:root {
  --ink: #11171c;
  --indigo: #172437;
  --steel: #314656;
  --gold: #c29a55;
  --gold-deep: #9f7634;
  --gold-hover: #d3ac67;
  --gold-focus: rgba(194, 154, 85, 0.58);
  --gold-rule: rgba(194, 154, 85, 0.65);
  --paper: #f4f0e8;
  --mist: #eef1f3;
  --line: #d7dde1;
  --copper: #9a5a35;
  --white: #ffffff;
  --text: #29343b;
  --muted: #64717a;
  --container: 1180px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1.16rem;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin-bottom: 1.5rem;
  font-size: 3.15rem;
  font-weight: 700;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 23, 28, 0.72);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 23, 28, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1320px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  gap: 22px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 60px;
}

.brand img {
  width: 242px;
  max-height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 10px;
  display: block;
  width: 23px;
  height: 2px;
  margin: 0;
  background: var(--white);
  transition: top 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 13px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 29px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold-focus);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.header-cta {
  border-color: var(--gold);
  color: var(--gold);
}

.header-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--gold-hover);
}

.button-outline {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold);
}

.button-outline:hover {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 36px);
  overflow: hidden;
  background-color: var(--ink);
  background-image: url("assets/saturn-hero.png");
  background-position: center center;
  background-size: cover;
  color: var(--white);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 16, 0.23);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 56px);
  padding-bottom: 64px;
}

.hero-content > * {
  max-width: 720px;
}

.hero-prelude {
  display: grid;
  width: max-content;
  max-width: 100%;
  justify-items: center;
  margin-bottom: 18px;
}

.hero-mark {
  width: 100px;
  height: 88px;
  margin-bottom: 7px;
  overflow: hidden;
}

.hero-mark img {
  width: 100px;
  height: 88px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.94;
}

.eyebrow,
.section-kicker,
.program-label,
.audience-label,
.fact-label {
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 0;
  color: var(--gold);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 4.35rem;
  font-weight: 750;
}

.hero h1 span {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.hero-subtitle {
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 1.68rem;
  font-weight: 500;
  line-height: 1.3;
}

.hero-lead {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.55;
}

.hero-facts {
  display: flex;
  max-width: 740px;
  margin-bottom: 1.15rem;
  padding-block: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.hero-facts > div {
  padding-inline: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts span,
.hero-facts strong {
  display: block;
}

.hero-facts .fact-label {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.hero-facts strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.35;
}

.hero-price {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-price strong {
  color: var(--white);
  font-size: 1.3rem;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 48px;
}

.section-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-kicker {
  margin-bottom: 0.7rem;
}

.section-kicker-light {
  color: var(--gold);
}

.section-intro {
  padding-top: 94px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 1.2fr);
  gap: 88px;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 34px;
}

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

.intro-copy p {
  color: var(--text);
  font-size: inherit;
  line-height: 1.6;
}

.lead {
  color: var(--ink);
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

.section-sada {
  background: var(--white);
}

.sada-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 70px;
}

.sada-copy p {
  max-width: 670px;
}

.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stage {
  min-width: 0;
  padding: 22px 18px;
  border-left: 1px solid var(--line);
}

.stage:first-child {
  border-left: 0;
}

.stage-current {
  background: var(--paper);
}

.stage span,
.stage strong,
.stage small {
  display: block;
}

.stage span {
  margin-bottom: 8px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stage strong {
  margin-bottom: 4px;
  color: var(--ink);
  line-height: 1.3;
}

.stage small {
  color: var(--muted);
  line-height: 1.35;
}

.schema {
  margin-bottom: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf9;
  box-shadow: 0 18px 46px rgba(36, 43, 48, 0.08);
}

.schema img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.moon-note {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 72px;
  padding: 38px 42px;
  border-left: 4px solid var(--gold);
  background: var(--mist);
}

.moon-note-title {
  display: flex;
  align-items: flex-start;
  padding-right: 40px;
  gap: 16px;
}

.moon-note-title h3 {
  margin-bottom: 0;
}

.moon-symbol {
  color: var(--gold-deep);
  font-size: 2.4rem;
  line-height: 1;
}

.moon-note p:last-child {
  margin-bottom: 0;
}

.section-benefits {
  position: relative;
  overflow: hidden;
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.8);
}

.section-benefits h2,
.section-benefits h3 {
  color: var(--white);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px 92px;
}

.benefits-lead {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.18rem;
}

.benefit-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  gap: 20px;
}

.benefit-item span {
  display: grid;
  width: 36px;
  min-height: 36px;
  place-items: center;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.benefit-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.result-statement {
  grid-column: 1 / -1;
  margin-top: 34px;
  padding-top: 38px;
  border-top: 1px solid var(--gold-rule);
}

.result-statement p,
.result-statement strong {
  margin-bottom: 0;
}

.result-statement strong {
  display: block;
  max-width: 1040px;
  color: var(--white);
  font-size: 1.42rem;
  line-height: 1.45;
}

.section-audience {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cfc7bb;
  border-bottom: 1px solid #cfc7bb;
}

.audience-grid article {
  min-width: 0;
  padding: 32px 30px 34px;
  border-left: 1px solid #cfc7bb;
}

.audience-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.audience-grid article:last-child {
  padding-right: 0;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-note {
  max-width: 840px;
  margin: 36px auto 0;
  color: var(--steel);
  font-size: 1.08rem;
  text-align: center;
}

.section-program {
  background: var(--white);
}

.heading-row {
  display: block;
  max-width: 900px;
}

.heading-row h2 {
  margin-bottom: 0;
}

.heading-row > p {
  max-width: 760px;
  margin-top: 14px;
  font-style: italic;
}

.program-list {
  border-top: 2px solid var(--ink);
}

.program-item {
  display: grid;
  grid-template-columns: 78px minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  gap: 30px;
}

.program-number {
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 800;
}

.program-label {
  margin-bottom: 7px;
}

.program-item h3 {
  margin-bottom: 0;
}

.program-item ul {
  margin: 0;
  padding-left: 20px;
}

.program-item li + li {
  margin-top: 8px;
}

.program-item li::marker {
  color: var(--gold-deep);
}

.program-cta {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.section-flow {
  background: var(--mist);
}

.flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: start;
  gap: 90px;
}

.flow-grid > div:first-child p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.schedule {
  padding: 30px 34px;
  border: 1px solid #c7d0d5;
  border-radius: 6px;
  background: var(--white);
}

.schedule h3 {
  margin-bottom: 16px;
}

.schedule > div {
  display: grid;
  grid-template-columns: 138px 1fr;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  gap: 20px;
}

.schedule time {
  color: var(--ink);
  font-weight: 700;
}

.schedule > p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-materials {
  background: var(--paper);
}

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

.materials-grid article {
  min-height: 252px;
  padding: 32px;
  border: 1px solid #d9d1c5;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}

.materials-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 800;
}

.materials-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.materials-note {
  max-width: 850px;
  margin: 36px auto 0;
  text-align: center;
}

.section-preparation {
  background: var(--white);
}

.preparation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  content: "🪐";
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
}

.preparation-panel {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.video-placeholder {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  padding: 30px;
  border-radius: 6px;
  background-color: var(--ink);
  background-image: url("assets/saturn-hero.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.video-placeholder::before {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 19, 0.55);
  content: "";
}

.video-placeholder > * {
  position: relative;
  z-index: 1;
}

.play-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  place-items: center;
}

.video-placeholder p {
  max-width: 420px;
  margin-bottom: 6px;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.35;
}

.video-placeholder small {
  color: var(--gold);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.video-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background-color: var(--ink);
  background-image: linear-gradient(180deg, rgba(17, 23, 28, 0.04), rgba(17, 23, 28, 0.18)), url("assets/video-cover-sade-sati.jpg");
  background-position: center;
  background-size: cover;
  cursor: pointer;
}

.video-cover::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-cover:hover::after,
.video-cover:focus-visible::after {
  opacity: 1;
}

.video-cover:focus-visible {
  outline: 3px solid var(--gold-focus);
  outline-offset: -6px;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.preparation-panel .button {
  justify-self: start;
  color: var(--gold-deep);
}

.preparation-panel .button:hover {
  color: var(--ink);
}

.telegram-note {
  max-width: 520px;
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

.section-host {
  background: var(--mist);
}

.host-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 90px;
}

.host-photo {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 6px;
}

.host-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}

.host-copy h2 {
  margin-bottom: 1.25rem;
}

.host-role {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
}

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

.section-reviews {
  background: var(--white);
}

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

.reviews-grid blockquote {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  margin-bottom: 0;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.reviews-grid blockquote > p {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.55;
}

.reviews-grid footer {
  display: grid;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #d6cec1;
}

.reviews-grid footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-grid footer a {
  justify-self: start;
  margin-top: 10px;
  color: var(--gold-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-format {
  background: var(--steel);
  color: rgba(255, 255, 255, 0.78);
}

.section-format h2 {
  color: var(--white);
}

.format-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 90px;
}

.format-grid > div > p:last-child {
  margin-bottom: 0;
}

.format-grid dl {
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.format-grid dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.format-grid dt {
  color: rgba(255, 255, 255, 0.58);
}

.format-grid dd {
  margin-bottom: 0;
  color: var(--white);
  font-weight: 700;
}

.section-faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 90px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid #cfc7bb;
}

.faq-list summary {
  position: relative;
  padding: 22px 52px 22px 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--gold-deep);
  content: "+";
  font-size: 1.45rem;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 46px 22px 0;
  color: var(--muted);
}

.section-registration {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.registration-image {
  position: absolute;
  inset: 0;
  background-image: url("assets/saturn-hero.png");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

.registration-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
  align-items: start;
  gap: 90px;
}

.registration-copy h2 {
  max-width: 650px;
  color: var(--white);
}

.registration-copy > p:not(.section-kicker) {
  max-width: 650px;
}

.registration-facts {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-facts p {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  margin-bottom: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.registration-facts strong {
  color: var(--white);
}

.registration-facts span {
  color: rgba(255, 255, 255, 0.65);
}

.registration-steps {
  margin-top: 36px;
}

.registration-steps h3 {
  color: var(--white);
}

.registration-steps ul {
  margin: 0;
  padding-left: 20px;
}

.registration-steps li + li {
  margin-top: 8px;
}

.registration-steps li::marker {
  color: var(--gold);
}

.registration-form {
  min-width: 0;
  padding: 38px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d5cec2;
}

.form-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-heading h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.field {
  display: grid;
  margin-bottom: 18px;
  gap: 7px;
}

.field > span {
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #bfc7cb;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}

.field input::placeholder {
  color: #909aa0;
}

.field input:focus {
  border-color: var(--gold-deep);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  margin: 4px 0 24px;
  gap: 11px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold-deep);
}

.form-submit {
  width: 100%;
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hidden-field input {
  width: 1px;
  height: 1px;
}

.site-footer {
  padding: 58px 0 24px;
  background: #0b1014;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

.footer-grid img {
  width: 220px;
  max-height: 48px;
  margin-bottom: 14px;
  object-fit: contain;
}

.footer-grid p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  gap: 30px;
  font-size: 0.78rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.success-page {
  min-height: 100svh;
  background: var(--ink);
}

.success-main {
  display: grid;
  min-height: 100svh;
  padding: 40px 24px;
  background-image: url("assets/saturn-hero.png");
  background-position: center;
  background-size: cover;
  place-items: center;
}

.success-content {
  width: min(680px, 100%);
  padding: 52px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(17, 23, 28, 0.9);
  color: rgba(255, 255, 255, 0.78);
}

.success-content > img {
  width: 58px;
  height: 50px;
  margin-bottom: 30px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.success-content h1 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 3.2rem;
}

.success-content .button {
  margin-top: 18px;
}

.consent a {
  color: var(--gold-deep);
  font-weight: 650;
  text-underline-offset: 3px;
}

.consent a:hover,
.consent a:focus-visible {
  color: var(--ink);
}

.policy-page {
  background: #f7f5ef;
}

.policy-header {
  background: var(--ink);
  color: var(--white);
}

.policy-header-inner,
.policy-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.policy-header-inner {
  min-height: 86px;
}

.policy-brand img {
  width: 242px;
  max-height: 52px;
  object-fit: contain;
}

.policy-back,
.policy-footer a {
  color: var(--gold);
  font-weight: 650;
  text-decoration: none;
}

.policy-back:hover,
.policy-back:focus-visible,
.policy-footer a:hover,
.policy-footer a:focus-visible {
  color: var(--gold-hover);
}

.policy-main {
  padding: 88px 0 96px;
}

.policy-container {
  width: min(880px, calc(100% - 48px));
}

.policy-main h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 3.45rem;
}

.policy-updated {
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.96rem;
}

.policy-lead {
  margin-bottom: 64px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.55;
}

.policy-section {
  padding: 34px 0 36px;
  border-top: 1px solid var(--line);
}

.policy-section h2 {
  margin-bottom: 18px;
  font-size: 2rem;
}

.policy-section p:last-child,
.policy-section ul:last-child {
  margin-bottom: 0;
}

.policy-section li + li {
  margin-top: 8px;
}

.policy-section a {
  color: var(--gold-deep);
  font-weight: 650;
  text-underline-offset: 3px;
}

.policy-footer {
  padding: 30px 0;
  background: #0b1014;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .sada-grid,
  .preparation-grid,
  .host-grid,
  .registration-grid {
    gap: 56px;
  }

  .program-item {
    grid-template-columns: 60px minmax(220px, 0.85fr) minmax(300px, 1.15fr);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  h2 {
    font-size: 2.65rem;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    min-height: calc(100svh - var(--header-height));
    margin-left: 0;
    padding: 16px 24px 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--ink);
    gap: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.04rem;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-cta {
    margin-left: 0;
  }

  .hero {
    min-height: 780px;
    background-position: 61% center;
  }

  .hero-content {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .intro-grid,
  .sada-grid,
  .benefits-layout,
  .flow-grid,
  .preparation-grid,
  .host-grid,
  .format-grid,
  .faq-grid,
  .registration-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .preparation-grid > *,
  .registration-grid > * {
    min-width: 0;
  }

  .intro-copy {
    padding-top: 0;
  }

  .schema {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .moon-note-title {
    padding-right: 0;
  }

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

  .audience-grid,
  .materials-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid article,
  .audience-grid article:first-child,
  .audience-grid article:last-child {
    padding: 28px 0;
    border-top: 1px solid #cfc7bb;
    border-left: 0;
  }

  .audience-grid article:first-child {
    border-top: 0;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .program-item {
    grid-template-columns: 54px 1fr;
  }

  .program-item ul {
    grid-column: 2;
  }

  .flow-grid,
  .preparation-grid,
  .host-grid,
  .format-grid,
  .faq-grid,
  .registration-grid {
    gap: 52px;
  }

  .materials-grid article {
    min-height: 0;
  }

  .materials-grid span {
    margin-bottom: 20px;
  }

  .host-photo {
    order: 2;
    width: min(520px, 100%);
  }

  .host-copy {
    order: 1;
  }

  .reviews-grid blockquote {
    min-height: 240px;
  }

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

  .registration-form {
    width: min(620px, 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 8px;
  }

  .brand img {
    width: 205px;
    max-height: 44px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .section {
    padding: 74px 0;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .hero {
    min-height: 780px;
    background-image: url("assets/saturn-mobile.png");
    background-position: center top;
  }

  .hero-shade {
    background: rgba(5, 10, 14, 0.42);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 780px;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero-mark {
    width: 90px;
    height: 78px;
    margin-bottom: 5px;
  }

  .hero-mark img {
    width: 90px;
    height: 78px;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-lead {
    font-size: 1.03rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-facts > div {
    padding: 8px 12px;
  }

  .hero-facts > div:nth-child(1) {
    padding-left: 0;
  }

  .hero-facts > div:nth-child(3) {
    grid-column: 1 / -1;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .hero .button {
    width: 100%;
  }

  .intro-grid {
    gap: 24px;
  }

  .lead {
    font-size: inherit;
  }

  .intro-copy p {
    font-size: inherit;
  }

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

  .stage,
  .stage:first-child {
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .stage:first-child {
    border-top: 0;
  }

  .stage-current {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .schema {
    padding: 10px;
  }

  .moon-note {
    margin-top: 48px;
    padding: 28px 24px;
  }

  .moon-note-title {
    display: block;
  }

  .moon-symbol {
    display: block;
    margin-bottom: 12px;
  }

  .benefit-item {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }

  .result-statement strong {
    font-size: 1.18rem;
  }

  .program-item {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }

  .program-item ul {
    grid-column: 1 / -1;
    margin-top: 6px;
  }

  .schedule {
    padding: 24px 20px;
  }

  .schedule > div {
    grid-template-columns: 112px 1fr;
    gap: 10px;
    font-size: 0.92rem;
  }

  .video-placeholder {
    padding: 24px;
  }

  .preparation-panel .button {
    width: 100%;
  }

  .telegram-note {
    margin-top: -4px;
    text-align: center;
  }

  .host-photo {
    width: 100%;
  }

  .reviews-grid blockquote {
    min-height: 0;
    padding: 26px;
  }

  .format-grid dl div,
  .registration-facts p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .faq-grid {
    gap: 24px;
  }

  .registration-form {
    padding: 28px 22px;
  }

  .form-heading h3 {
    font-size: 1.75rem;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-grid nav {
    display: grid;
    justify-content: start;
  }

  .success-content {
    padding: 34px 24px;
  }

  .policy-header-inner,
  .policy-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .policy-header-inner {
    padding: 18px 0 20px;
  }

  .policy-brand img {
    width: 205px;
  }

  .policy-main {
    padding: 58px 0 70px;
  }

  .policy-main h1 {
    font-size: 2.08rem;
    overflow-wrap: anywhere;
  }

  .policy-updated {
    margin-bottom: 34px;
  }

  .policy-lead {
    margin-bottom: 46px;
    font-size: 1.22rem;
  }

  .policy-section {
    padding: 28px 0 30px;
  }

  .policy-section h2 {
    font-size: 1.65rem;
  }

  .success-content h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.34rem;
  }

  .hero-subtitle {
    font-size: 1.32rem;
  }

  .schedule > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .registration-copy h2 {
    font-size: 2.05rem;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

/* Персональный калькулятор Саде Сати */
.section-calculator {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(214, 181, 111, 0.13), transparent 28rem),
    linear-gradient(145deg, #11171c 0%, #172437 100%);
}

.section-calculator::before {
  position: absolute;
  top: -150px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(214, 181, 111, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(214, 181, 111, 0.035),
    0 0 0 116px rgba(214, 181, 111, 0.025);
  content: "";
  pointer-events: none;
}

.calculator-heading {
  position: relative;
  max-width: 790px;
  margin-bottom: 42px;
}

.calculator-heading h2,
.calculator-heading > p:last-child {
  color: var(--white);
}

.calculator-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.calculator-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 181, 111, 0.42);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
}

.calculator-form {
  padding: 38px 40px 40px;
}

.calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.calculator-field {
  display: grid;
  gap: 8px;
}

.calculator-field > span {
  color: var(--ink);
  font-weight: 750;
}

.calculator-field select,
.calculator-field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid #b8c0c5;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.calculator-field select:focus,
.calculator-field input:focus {
  border-color: var(--gold-deep);
  outline: 3px solid var(--gold-focus);
  outline-offset: 1px;
}

.calculator-field small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.calculator-submit {
  margin-top: 28px;
}

.calculator-error {
  margin: 18px 0 0;
  padding: 12px 15px;
  border-left: 3px solid #9d3e35;
  background: #fff1ef;
  color: #752d27;
  font-size: 0.94rem;
}

.calculator-loading {
  padding: 28px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.calculator-results {
  scroll-margin-top: calc(var(--header-height) + 18px);
  border-top: 1px solid var(--line);
  background: #fbfaf7;
}

.calculator-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 40px 30px;
  gap: 30px;
}

.result-label {
  margin-bottom: 7px;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.calculator-summary h3 {
  margin-bottom: 8px;
  font-size: 1.8rem;
}

.calculator-summary p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-print {
  flex: 0 0 auto;
  color: var(--gold-deep);
}

.calculator-print:hover {
  color: var(--ink);
}

.calculator-print span {
  margin-right: 4px;
  font-size: 1.18em;
}

.calculator-status {
  margin: 0 40px 28px;
  padding: 18px 20px;
  border: 1px solid #ddd4c4;
  border-left: 4px solid var(--gold-deep);
  border-radius: 4px;
  background: #f5efe3;
  color: var(--ink);
}

.calculator-status strong {
  color: var(--gold-deep);
}

.calculator-cycles {
  display: grid;
  padding: 0 40px 36px;
  gap: 24px;
}

.calculator-cycle {
  overflow: hidden;
  border: 1px solid #d9d1c5;
  border-radius: 6px;
  background: var(--white);
}

.cycle-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid #d9d1c5;
  background: var(--paper);
  gap: 18px;
}

.cycle-heading h4 {
  margin: 0;
  color: var(--indigo);
  font-family: "Aptos Display", Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.cycle-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cycle-badge,
.period-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
  white-space: nowrap;
}

.cycle-badge {
  padding: 6px 10px;
  background: var(--indigo);
  color: var(--white);
  font-size: 0.76rem;
}

.table-scroll {
  overflow-x: auto;
}

.calculator-table {
  width: 100%;
  min-width: 790px;
  border-collapse: collapse;
  font-size: 0.91rem;
  line-height: 1.45;
}

.calculator-table th,
.calculator-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e4ded4;
  text-align: left;
  vertical-align: middle;
}

.calculator-table th {
  background: #fbfaf7;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
}

.calculator-table tbody tr:last-child td {
  border-bottom: 0;
}

.calculator-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.calculator-table tr.is-current {
  background: #fff8e8;
}

.period-date-start,
.period-date-end {
  display: block;
  white-space: nowrap;
}

.period-date-end::before {
  content: "\2014\00a0";
}

.period-status {
  min-width: 76px;
  padding: 4px 8px;
  background: #e9ecee;
  color: #53616a;
  font-size: 0.75rem;
}

.period-status.is-current {
  background: #e9d49a;
  color: #654a18;
}

.period-status.is-future {
  background: #dfe9ec;
  color: #365966;
}

.calculator-notes {
  padding: 27px 40px 32px;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.calculator-notes p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.calculator-notes p:last-child {
  margin-bottom: 0;
}

.print-report-header,
.print-report-footer {
  display: none;
}

@media (max-width: 720px) {
  .calculator-heading {
    margin-bottom: 30px;
  }

  .calculator-form,
  .calculator-summary,
  .calculator-cycles,
  .calculator-notes {
    padding-right: 22px;
    padding-left: 22px;
  }

  .calculator-fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .calculator-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .calculator-summary h3 {
    font-size: 1.5rem;
  }

  .calculator-status {
    margin-right: 22px;
    margin-left: 22px;
  }

  .cycle-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 25mm 12mm 18mm;

    @top-left-corner {
      content: "";
      background: linear-gradient(to bottom, #172437 0, #172437 calc(100% - 4.3mm), #c3a25b calc(100% - 4.3mm), #c3a25b calc(100% - 4mm), #fff calc(100% - 4mm), #fff 100%);
    }

    @top-left {
      content: "";
      background-color: #fff;
      background-image: url("assets/harmony-logo-horizontal-white.png"), linear-gradient(to bottom, #172437 0, #172437 calc(100% - 4.3mm), #c3a25b calc(100% - 4.3mm), #c3a25b calc(100% - 4mm), #fff calc(100% - 4mm), #fff 100%);
      background-repeat: no-repeat, no-repeat;
      background-position: left calc(50% - 2mm), center;
      background-size: 90mm auto, 100% 100%;
    }

    @top-center {
      content: "";
      background: linear-gradient(to bottom, #172437 0, #172437 calc(100% - 4.3mm), #c3a25b calc(100% - 4.3mm), #c3a25b calc(100% - 4mm), #fff calc(100% - 4mm), #fff 100%);
    }

    @top-right {
      content: "Персональный расчёт\A периода Саде Сати";
      white-space: pre-line;
      box-sizing: border-box;
      padding-bottom: 4mm;
      background: linear-gradient(to bottom, #172437 0, #172437 calc(100% - 4.3mm), #c3a25b calc(100% - 4.3mm), #c3a25b calc(100% - 4mm), #fff calc(100% - 4mm), #fff 100%);
      color: #d6b56f;
      font-family: Arial, sans-serif;
      font-size: 11.5pt;
      font-weight: 700;
      line-height: 1.18;
      text-align: right;
      vertical-align: middle;
    }

    @top-right-corner {
      content: "";
      background: linear-gradient(to bottom, #172437 0, #172437 calc(100% - 4.3mm), #c3a25b calc(100% - 4.3mm), #c3a25b calc(100% - 4mm), #fff calc(100% - 4mm), #fff 100%);
    }

    @bottom-left-corner {
      content: "";
      border-top: 0.75pt solid #c3a25b;
    }

    @bottom-left {
      content: "Персональный расчёт периода Саде Сати";
      border-top: 0.75pt solid #c3a25b;
      color: #66636b;
      font-family: Arial, sans-serif;
      font-size: 7.5pt;
      vertical-align: middle;
    }

    @bottom-center {
      content: "";
      border-top: 0.75pt solid #c3a25b;
    }

    @bottom-right {
      content: "Страница " counter(page) " из " counter(pages);
      border-top: 0.75pt solid #c3a25b;
      color: #66636b;
      font-family: Arial, sans-serif;
      font-size: 7.5pt;
      text-align: right;
      vertical-align: middle;
    }

    @bottom-right-corner {
      content: "";
      border-top: 0.75pt solid #c3a25b;
    }
  }

  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body {
    background: #fff !important;
    font-size: 10pt;
  }

  body > :not(main),
  main > :not(.section-calculator),
  .calculator-heading,
  .calculator-form,
  .calculator-loading,
  .calculator-print,
  .pdf-hint,
  .section-calculator::before {
    display: none !important;
  }

  main,
  .section-calculator,
  .section-calculator .container,
  .calculator-card,
  .calculator-results {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .print-report-header {
    display: none !important;
  }

  .print-report-footer {
    display: none !important;
  }

  .calculator-summary {
    padding: 8mm 8mm 5mm;
  }

  .calculator-summary h3 {
    font-size: 18pt;
  }

  .calculator-summary p {
    font-size: 9pt;
  }

  .calculator-status {
    margin: 0 8mm 6mm;
    padding: 4mm;
    font-size: 9pt;
  }

  .calculator-cycles {
    padding: 0 8mm 5mm;
    gap: 5mm;
  }

  .calculator-cycle {
    break-inside: avoid;
    border-color: #bfb8ad;
  }

  .cycle-heading {
    padding: 4mm;
  }

  .cycle-heading h4 {
    color: var(--indigo);
    font-size: 12pt;
  }

  .cycle-heading p,
  .cycle-badge {
    font-size: 7.5pt;
  }

  .cycle-badge {
    background: var(--indigo);
  }

  .table-scroll {
    overflow: visible;
  }

  .calculator-table {
    min-width: 0;
    font-size: 7.5pt;
    table-layout: fixed;
  }

  .calculator-table th:nth-child(1),
  .calculator-table td:nth-child(1) {
    width: 26%;
  }

  .calculator-table th:nth-child(2),
  .calculator-table td:nth-child(2) {
    width: 9%;
  }

  .calculator-table th:nth-child(3),
  .calculator-table td:nth-child(3) {
    width: 20%;
  }

  .calculator-table th:nth-child(4),
  .calculator-table td:nth-child(4) {
    width: 15%;
  }

  .calculator-table th:nth-child(5),
  .calculator-table td:nth-child(5) {
    width: 17%;
  }

  .calculator-table th:nth-child(6),
  .calculator-table td:nth-child(6) {
    width: 13%;
  }

  .calculator-table th,
  .calculator-table td {
    padding: 2.3mm 2.6mm;
  }

  .calculator-table th {
    font-size: 6.3pt;
  }

  .period-date-start,
  .period-date-end {
    display: block;
    white-space: nowrap;
  }

  .period-date-end {
    margin-top: 0.8mm;
  }

  .period-date-end::before {
    content: "— ";
  }

  .period-status {
    min-width: 0;
    padding: 1mm 2mm;
    font-size: 6.5pt;
  }

  .calculator-notes {
    padding: 5mm 8mm 0;
  }

  .calculator-notes p {
    font-size: 7.3pt;
  }
}
