:root {
  color-scheme: light;
  --paper: #fbfcf6;
  --sheet: #fffffb;
  --ink: #101713;
  --muted: #64746d;
  --line: rgba(8, 48, 39, 0.16);
  --green: #043126;
  --green-2: #075443;
  --deep: #02120e;
  --mint: #aee6d0;
  --mint-soft: #e4f5ed;
  --coral: #ff684f;
  --coral-dark: #e84e3d;
  --aqua: #56c5b0;
  --white: #ffffff;
  --shadow: 0 36px 90px rgba(7, 22, 17, 0.2);
  --shadow-soft: 0 22px 60px rgba(7, 38, 29, 0.12);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(4, 49, 38, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fffffb 0%, var(--paper) 44%, #edf7f1 100%);
  background-size: 104px 104px, auto;
  color: var(--ink);
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(4, 49, 38, 0.018) 0,
      rgba(4, 49, 38, 0.018) 1px,
      transparent 1px,
      transparent 7px
    );
  content: "";
}

body::selection {
  background: rgba(255, 104, 79, 0.24);
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 10px max(18px, calc((100vw - 1440px) / 2 + 42px));
  border-bottom: 1px solid rgba(174, 230, 208, 0.18);
  background: rgba(3, 19, 15, 0.9);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(2, 18, 14, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 32px;
  height: 32px;
  fill: var(--mint);
}

.brand__name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand__role {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12.5px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--mint);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--white);
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 18px 36px rgba(255, 104, 79, 0.28);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.header-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(255, 104, 79, 0.36);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.72fr) 82px;
  grid-template-areas:
    "copy photo issue"
    "facts facts issue";
  gap: 30px 58px;
  margin: 0;
  padding: 48px max(18px, calc((100vw - 1440px) / 2 + 48px)) 82px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(174, 230, 208, 0.08) 1px, transparent 1px),
    linear-gradient(115deg, #03120e 0%, #062920 42%, #075443 76%, #031711 100%);
  background-size: 116px 100%, auto;
  color: var(--white);
}

.hero::before,
.hero::after {
  position: absolute;
  inset-inline: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(90deg, rgba(2, 18, 14, 0.76), transparent 52%);
  opacity: 0.72;
}

.hero::after {
  bottom: -1px;
  height: 86px;
  background: var(--paper);
  clip-path: polygon(0 56%, 100% 0, 100% 100%, 0 100%);
}

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

.hero__copy {
  grid-area: copy;
  align-self: center;
  max-width: 820px;
}

h1 {
  color: var(--white);
  font-size: 96px;
  line-height: 0.92;
  text-wrap: balance;
}

h1 em {
  display: block;
  max-width: 760px;
  margin-top: 12px;
  color: var(--mint);
  font-size: 66px;
  font-style: italic;
  line-height: 1;
}

.hero__lead {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
  content: "";
}

.button:hover::before {
  transform: translateX(120%);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 24px 48px rgba(255, 104, 79, 0.28);
}

.button--primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
}

.button--quiet {
  min-height: 44px;
  padding-inline: 0;
  color: rgba(255, 255, 255, 0.86);
}

.button--quiet:hover {
  color: var(--mint);
}

.hero__portrait {
  position: relative;
  grid-area: photo;
  align-self: center;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #101410;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.38);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}

.hero__portrait::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 23%),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.42));
  content: "";
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 39%;
  transform: scale(1.015);
}

.hero__portrait figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(2, 18, 14, 0.78);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.hero__portrait figcaption span {
  color: rgba(255, 255, 255, 0.72);
}

.hero__portrait figcaption strong {
  font-weight: 760;
}

.hero__issue {
  grid-area: issue;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  padding-top: 8px;
  border-left: 1px solid rgba(174, 230, 208, 0.34);
  color: rgba(255, 255, 255, 0.78);
}

.hero__issue span {
  font-size: 12px;
}

.hero__issue strong {
  color: var(--mint);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.hero__issue em {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  text-align: center;
}

.hero__facts {
  grid-area: facts;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.62fr;
  margin-top: 10px;
  border: 1px solid rgba(174, 230, 208, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(110deg, rgba(174, 230, 208, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(2, 18, 14, 0.78);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero__facts div {
  display: grid;
  gap: 7px;
  min-height: 92px;
  align-content: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(174, 230, 208, 0.18);
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts span,
.section-label,
.contact-card > span {
  color: var(--green-2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__facts span {
  color: rgba(174, 230, 208, 0.82);
}

.hero__facts strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.editorial-line {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 28px 44px;
}

.editorial-line::before {
  position: absolute;
  top: 42px;
  bottom: 36px;
  left: 28px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--coral), var(--mint));
  content: "";
}

.editorial-line p {
  max-width: 980px;
  padding-left: 28px;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1.08;
  text-wrap: balance;
}

.spread {
  position: relative;
  isolation: isolate;
  max-width: var(--max);
  margin: 0 auto;
  padding: 98px 28px 112px;
}

.help-spread::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(255, 255, 251, 0.96) 0%, rgba(255, 255, 251, 0.96) 63%, rgba(228, 245, 237, 0.92) 63%, rgba(228, 245, 237, 0.92) 100%);
  clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 96%);
  content: "";
}

.issue-rail {
  position: absolute;
  top: 96px;
  left: max(16px, calc((100vw - var(--max)) / 2 - 82px));
  display: grid;
  gap: 18px;
  color: var(--green-2);
}

.issue-rail--right {
  right: max(16px, calc((100vw - var(--max)) / 2 - 82px));
  left: auto;
  color: var(--mint);
}

.issue-rail strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.issue-rail em {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.spread__intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 42px;
}

h2 {
  color: var(--ink);
  font-size: 60px;
  line-height: 0.98;
  text-wrap: balance;
}

h3 {
  color: var(--ink);
  font-size: 23px;
  line-height: 1.12;
}

.help-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 251, 0.78);
  box-shadow: var(--shadow-soft);
}

.help-columns article {
  position: relative;
  min-height: 286px;
  padding: 32px 30px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.18));
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.help-columns article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--mint);
  content: "";
}

.help-columns article:nth-child(2)::before {
  background: var(--coral);
}

.help-columns article:nth-child(3)::before {
  background: var(--aqua);
}

.help-columns article:hover {
  background: #fffffb;
  transform: translateY(-2px);
}

.help-columns article:last-child {
  border-right: 0;
}

.help-columns span {
  display: block;
  margin-bottom: 44px;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.help-columns p,
.lesson-feature__text p,
.process-list span,
.about-block p,
.trial-block p,
.faq-list p,
.contact-card p {
  color: var(--muted);
}

.help-columns p {
  max-width: 280px;
  margin-top: 14px;
}

.lesson-feature {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 28px 118px;
  align-items: center;
}

.lesson-feature::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(102deg, var(--paper) 0%, var(--paper) 46%, #052d24 46%, #02120e 100%);
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 94%);
  content: "";
}

.lesson-feature__photo {
  position: relative;
  height: 610px;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 48, 39, 0.18);
  border-radius: var(--radius);
  background: #dfe6e0;
  box-shadow: var(--shadow);
  transform: rotate(-0.7deg);
}

.lesson-feature__photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(0deg, rgba(2, 18, 14, 0.22), transparent 36%);
  content: "";
}

.lesson-feature__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 50%;
}

.lesson-feature__text {
  position: relative;
  display: grid;
  align-content: center;
  padding: 54px;
  border: 1px solid rgba(174, 230, 208, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #083e33, #02120e);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
  color: var(--white);
}

.lesson-feature__text .section-label {
  color: var(--mint);
}

.lesson-feature__text h2 {
  margin-top: 12px;
  color: var(--white);
}

.lesson-feature__text > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(174, 230, 208, 0.22);
}

.process-list strong {
  color: var(--mint);
  font-size: 15px;
}

.process-list span {
  color: rgba(255, 255, 255, 0.7);
}

.about-trial {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(112deg, #fffffb 0%, #fffffb 49.8%, var(--mint-soft) 50%, #d7efe4 100%);
}

.about-trial::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(8, 48, 39, 0.16);
  content: "";
}

.about-block,
.trial-block {
  padding: 84px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.about-block {
  padding-right: 72px;
}

.trial-block {
  padding-left: 72px;
}

.about-block h2,
.trial-block h2 {
  max-width: 620px;
  margin-top: 14px;
}

.about-block p,
.trial-block p {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
}

.about-facts {
  display: grid;
  gap: 0;
  max-width: 600px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.about-facts span {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #26352f;
  font-weight: 700;
}

.trial-block .button {
  margin-top: 34px;
}

.faq-contact {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 78px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 28px;
  color: var(--white);
}

.faq-contact::before {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(174, 230, 208, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #031711, #020b09);
  background-size: 104px 100%, auto;
  content: "";
}

.faq-block .section-label {
  color: var(--mint);
}

.faq-block h2 {
  margin-top: 12px;
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid rgba(174, 230, 208, 0.2);
}

details {
  border-bottom: 1px solid rgba(174, 230, 208, 0.2);
}

summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 780;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(174, 230, 208, 0.3);
  border-radius: 50%;
  color: var(--mint);
  content: "+";
  font-size: 18px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 48px 22px 0;
  color: rgba(255, 255, 255, 0.66);
}

.contact-card {
  position: relative;
  display: grid;
  align-content: center;
  overflow: hidden;
  padding: 52px;
  border: 1px solid rgba(174, 230, 208, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(180deg, #0b3f33, #031711);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0%, rgba(255, 255, 255, 0.11) 48%, transparent 64%);
  transform: translateX(-34%);
  content: "";
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card > span {
  color: var(--mint);
}

.contact-card h2 {
  margin-top: 10px;
  color: var(--white);
}

.contact-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-card .button {
  width: 100%;
  margin-top: 22px;
}

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

.button--outline {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: var(--white);
}

.copy-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 26px max(18px, calc((100vw - var(--max)) / 2 + 28px)) 40px;
  background: #020b09;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js [data-reveal="right"] {
  transform: translateX(34px);
}

.js [data-reveal="up"] {
  transform: translateY(38px);
}

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

@media (max-width: 1180px) {
  .issue-rail {
    display: none;
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 22px;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "photo"
      "facts";
    padding: 44px 22px 76px;
  }

  .hero__issue {
    display: none;
  }

  h1 {
    font-size: 74px;
  }

  h1 em {
    font-size: 54px;
  }

  .hero__portrait {
    min-height: 520px;
  }

  .spread__intro,
  .lesson-feature,
  .about-trial,
  .faq-contact {
    grid-template-columns: 1fr;
  }

  .lesson-feature::before {
    background:
      linear-gradient(180deg, var(--paper) 0%, var(--paper) 44%, #052d24 44%, #02120e 100%);
  }

  .about-trial {
    background: #fffffb;
  }

  .about-trial::before {
    display: none;
  }

  .about-block {
    border-bottom: 1px solid var(--line);
  }

  .about-block,
  .trial-block {
    padding: 68px 22px;
  }

  .trial-block {
    background: var(--mint-soft);
  }

  .faq-contact {
    gap: 48px;
    padding-inline: 22px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding-inline: 14px;
  }

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

  .brand__name {
    font-size: 16px;
  }

  .brand__role {
    font-size: 11.5px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .hero {
    gap: 22px;
    padding: 30px 16px 66px;
  }

  h1 {
    font-size: 47px;
    line-height: 0.98;
  }

  h1 em {
    margin-top: 8px;
    font-size: 36px;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    font-size: 14px;
  }

  .button--quiet {
    border: 1px solid rgba(174, 230, 208, 0.28);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero__portrait {
    min-height: 405px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero__portrait figcaption {
    display: grid;
    left: 10px;
    right: 10px;
    bottom: 10px;
    gap: 3px;
  }

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

  .hero__facts div {
    min-height: 66px;
    padding: 13px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(174, 230, 208, 0.16);
  }

  .hero__facts div:last-child {
    border-bottom: 0;
  }

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

  .editorial-line {
    padding: 48px 16px 36px;
  }

  .editorial-line::before {
    top: 46px;
    bottom: 36px;
    left: 16px;
  }

  .editorial-line p {
    padding-left: 22px;
    font-size: 34px;
  }

  .spread {
    padding: 62px 16px 70px;
  }

  .spread__intro {
    gap: 18px;
    margin-bottom: 28px;
  }

  h2 {
    font-size: 38px;
  }

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

  .help-columns article {
    min-height: auto;
    padding: 26px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .help-columns article:last-child {
    border-bottom: 0;
  }

  .help-columns span {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .lesson-feature {
    gap: 18px;
    padding: 34px 16px 68px;
  }

  .lesson-feature__photo {
    height: 310px;
    min-height: 310px;
    transform: none;
  }

  .lesson-feature__text {
    padding: 28px 18px;
  }

  .lesson-feature__text > p {
    font-size: 16px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-block,
  .trial-block {
    padding: 48px 16px;
  }

  .about-block p,
  .trial-block p {
    font-size: 16px;
  }

  .faq-contact {
    gap: 34px;
    padding: 58px 16px;
  }

  summary {
    min-height: 62px;
  }

  details p {
    padding-right: 0;
  }

  .contact-card {
    padding: 30px 18px;
  }

  .footer {
    display: grid;
    padding-inline: 16px;
  }

  .js [data-reveal="right"] {
    transform: translateY(28px);
  }
}

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

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