:root {
  color-scheme: light dark;
  --bg: #fbfaf7;
  --bg-rgb: 251, 250, 247;
  --surface: #ffffff;
  --surface-rgb: 255, 255, 255;
  --ink: #0b0b0f;
  --ink-rgb: 11, 11, 15;
  --shadow-rgb: 0, 0, 0;
  --muted: #4a4a57;
  --line: rgba(var(--ink-rgb), 0.12);
  --shadow: 0 20px 60px rgba(var(--shadow-rgb), 0.08);

  --accent: #1f2a44;
  --accent-rgb: 31, 42, 68;
  --accent-2: #caa35a;
  --navy: #1f2a44;
  --navy-rgb: 31, 42, 68;
  --offer-blue: #0E4A6E;
  --offer-blue-rgb: 14, 74, 110;
  --offer-red: #B14A33;
  --offer-red-rgb: 177, 74, 51;
  --btn-end-rgb: 17, 24, 39;

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gutter: 20px;

  --h1: clamp(36px, 4.6vw, 58px);
  --h2: clamp(26px, 3.1vw, 36px);
  --h3: 18px;
  --lead: clamp(18px, 2vw, 20px);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --reveal-distance: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: radial-gradient(1100px 600px at 15% 10%, rgba(202, 163, 90, 0.14), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(31, 42, 68, 0.10), transparent 60%),
    var(--bg);
  line-height: 1.55;
  transition: background 360ms var(--ease-soft), color 220ms ease;
}
html[data-theme="dark"] {
  --bg: #0b0b0f;
  --bg-rgb: 11, 11, 15;
  --surface: #111118;
  --surface-rgb: 17, 17, 24;
  --ink: #f5f5f7;
  --ink-rgb: 245, 245, 247;
  --muted: #b8b8c4;
  --line: rgba(var(--ink-rgb), 0.14);
  --shadow: 0 20px 60px rgba(var(--shadow-rgb), 0.55);
  --accent: #B58B2F;
  --accent-rgb: 181, 139, 47;
}
html[data-theme="dark"] body {
  background: radial-gradient(1100px 600px at 15% 10%, rgba(202, 163, 90, 0.10), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(31, 42, 68, 0.26), transparent 60%),
    var(--bg);
}
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 720ms var(--ease-soft),
    transform 720ms var(--ease-soft);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.92em;
}
.container {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}
.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  z-index: 9999;
}
.skip:focus {
  left: 14px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transform: translateY(0);
  transition:
    transform 220ms ease,
    background 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft),
    backdrop-filter 320ms var(--ease-soft),
    box-shadow 320ms var(--ease-soft);
  will-change: transform;
}
.header.header--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
}
html[data-theme="dark"] .header.header--scrolled {
  background: rgba(11, 11, 15, 0.94);
  border-bottom-color: rgba(var(--ink-rgb), 0.12);
}
body.effects-ready .header.header--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 26px rgba(var(--shadow-rgb), 0.05);
}
html[data-theme="dark"] body.effects-ready .header.header--scrolled {
  background: rgba(11, 11, 15, 0.86);
  box-shadow: 0 12px 28px rgba(var(--shadow-rgb), 0.28);
}
.header--hidden {
  transform: translateY(calc(-1 * var(--header-h, 72px)));
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  color: inherit;
  text-decoration: none;
}
.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(202, 163, 90, 0.16);
}
.brand__name {
  font-weight: 650;
  letter-spacing: 0.2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(var(--ink-rgb), 0.82);
  font-size: 14px;
  position: relative;
}
.nav a:hover {
  color: var(--ink);
}
.nav a[aria-current="page"] {
  font-weight: 700;
  color: var(--ink);
}
.nav a.btn.btn--primary:hover,
.nav a.btn.btn--primary:focus-visible {
  color: #fff;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(var(--surface-rgb), 0.86);
  box-shadow: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(var(--ink-rgb), 0.92);
  transition:
    transform 220ms var(--ease-soft),
    opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}
.nav-menu {
  display: none;
}
.theme-toggle {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.theme-toggle__track {
  width: 44px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.66);
  box-shadow: 0 8px 24px rgba(var(--shadow-rgb), 0.06);
  position: relative;
  overflow: hidden;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-soft);
}
.theme-toggle__track::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 50%, rgba(202, 163, 90, 0.42), transparent 56%),
    radial-gradient(circle at 72% 50%, rgba(var(--accent-rgb), 0.24), transparent 62%);
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 220ms ease,
    transform 320ms var(--ease-soft);
}
.theme-toggle__thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%) scale(var(--toggle-thumb-scale, 1));
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(var(--shadow-rgb), 0.14);
  transition:
    transform 240ms var(--ease-spring),
    background 180ms ease,
    box-shadow 220ms var(--ease-soft);
}
.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateY(-50%) translateX(18px) scale(var(--toggle-thumb-scale, 1));
  background: #B58B2F;
}
.theme-toggle:hover .theme-toggle__track,
.theme-toggle:focus-visible .theme-toggle__track,
.theme-toggle.theme-toggle--pulse .theme-toggle__track {
  box-shadow: 0 12px 28px rgba(var(--shadow-rgb), 0.10);
}
.theme-toggle:hover .theme-toggle__track::before,
.theme-toggle:focus-visible .theme-toggle__track::before,
.theme-toggle.theme-toggle--pulse .theme-toggle__track::before {
  opacity: 0.9;
  transform: scale(1);
}
.theme-toggle.theme-toggle--pulse {
  --toggle-thumb-scale: 1.12;
}
.theme-toggle:focus-visible .theme-toggle__track {
  outline: 2px solid rgba(181, 139, 47, 0.40);
  outline-offset: 3px;
}
.theme-toggle--menu {
  display: none;
}
.theme-toggle__label {
  display: none;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease,
    border-color 140ms ease;
  box-shadow: 0 8px 24px rgba(var(--shadow-rgb), 0.06);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(var(--shadow-rgb), 0.10);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  --btn-primary-alpha: 1;
  --btn-primary-border-alpha: 0.35;
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.00)) padding-box,
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), var(--btn-primary-alpha)),
      rgba(var(--btn-end-rgb), var(--btn-primary-alpha))
    ) padding-box,
    linear-gradient(
      135deg,
      rgba(var(--accent-rgb), var(--btn-primary-border-alpha)),
      rgba(var(--btn-end-rgb), var(--btn-primary-border-alpha))
    ) border-box;
  color: #fff;
}
.btn--primary:hover {
  --btn-primary-alpha: 0.8;
  --btn-primary-border-alpha: 0.28;
}
.btn--primary:focus-visible {
  --btn-primary-alpha: 0.8;
  --btn-primary-border-alpha: 0.28;
}
.btn--ghost {
  --btn-ghost-alpha: 0.6;
  background: rgba(var(--surface-rgb), var(--btn-ghost-alpha));
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  --btn-ghost-alpha: 0.8;
}
.btn--subtle {
  --btn-subtle-alpha: 0.52;
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--surface-rgb), var(--btn-subtle-alpha));
  color: rgba(var(--ink-rgb), 0.86);
}
.btn--subtle:hover,
.btn--subtle:focus-visible {
  --btn-subtle-alpha: 0.68;
}
.btn--small {
  padding: 10px 14px;
  font-size: 13px;
}
.btn--block {
  width: 100%;
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h, 0px));
  display: grid;
  align-items: center;
  padding: 42px 0 64px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.eyebrow {
  color: #B58B2F;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: 0.2px;
}
.tick {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #B58B2F;
  font-weight: 750;
}
h1 {
  font-size: var(--h1);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.hero__accent {
  color: #B58B2F;
}
h2 {
  font-size: var(--h2);
  line-height: 1.14;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
h2 + .sublead {
  margin-top: 0;
}
.bullets + h2 {
  margin-top: 34px;
}
h3 {
  font-size: var(--h3);
  margin: 0 0 8px;
}
p {
  font-size: 18px;
}
.lead {
  font-size: var(--lead);
  color: rgba(var(--ink-rgb), 0.86);
  margin: 0 0 18px;
}
.sublead {
  margin: 0 0 18px;
  color: rgba(var(--ink-rgb), 0.74);
  max-width: 70ch;
}
.cred {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.62);
  box-shadow: 0 10px 40px rgba(var(--shadow-rgb), 0.06);
}
.cred__line {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.82);
  font-size: 14px;
}
.cred__line + .cred__line {
  margin-top: 6px;
}
.hero__cta {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  width: min(420px, 100%);
}
.hero__priceblock {
  margin: 6px 0 18px;
}
.hero__price {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.02em;
}
.hero__price-note {
  margin: 6px 0 0;
  color: rgba(var(--ink-rgb), 0.62);
  font-size: 14px;
}
.pay {
  display: grid;
  gap: 10px;
}
.pay__label {
  color: rgba(var(--ink-rgb), 0.62);
  font-size: 14px;
}
.pay__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pay__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
  line-height: 0;
}
.pay__logo {
  height: 20px;
  width: auto;
  display: block;
}
.micro {
  margin: 0;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.68);
}
.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.7);
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.74);
}
.section {
  padding: 54px 0;
}
.section--white {
  background: var(--surface);
}
.section--tight {
  padding: 36px 0;
}
.section--cta {
  padding: 48px 0 82px;
}
.section-spacer {
  height: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.grid-2--value {
  margin-top: 18px;
}
.center-stack {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 14px;
}
.center-stack__text {
  max-width: 78ch;
  margin: 0;
  color: rgba(var(--ink-rgb), 0.78);
}
.center-stack__kicker {
  margin: 10px 0 0;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), 0.62);
}
.media {
  width: 100%;
}
.media--wide {
  max-width: 980px;
}
.media--portrait {
  max-width: 360px;
}
.media--cta {
  max-width: 900px;
}
.media__frame {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(var(--ink-rgb), 0.14);
  background: rgba(var(--surface-rgb), 0.62);
  box-shadow: var(--shadow);
}
.media__frame--plain {
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.media__frame--plain .media__placeholder {
  background: rgba(var(--surface-rgb), 0.4);
}
.media__img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.media__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 22px;
  background:
    radial-gradient(720px 420px at 18% 15%, rgba(202, 163, 90, 0.18), transparent 58%),
    radial-gradient(640px 380px at 85% 5%, rgba(31, 42, 68, 0.16), transparent 62%),
    rgba(var(--surface-rgb), 0.78);
}
.media__ph-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2px;
  color: rgba(var(--ink-rgb), 0.62);
  font-weight: 700;
  text-transform: uppercase;
}
.media__ph-title {
  margin-top: 10px;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.media__ph-sub {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.62);
}
.offer {
  border-radius: var(--radius);
  border: 1px solid rgba(var(--navy-rgb), 0.30);
  background: var(--surface);
  padding: 16px;
  box-shadow: 0 10px 30px rgba(var(--shadow-rgb), 0.05);
}
.center-stack h2[data-reveal] {
  transition-delay: 40ms;
}
.center-stack__text[data-reveal] {
  transition-delay: 140ms;
}
.link {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link--muted {
  color: rgba(var(--ink-rgb), 0.64);
  font-weight: 600;
  text-decoration-thickness: 1px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.66);
  box-shadow: var(--shadow);
  padding: 18px;
}
.steps {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.section-title--center {
  text-align: center;
}
.step {
  border: 1px solid var(--line);
  background: rgba(var(--surface-rgb), 0.78);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.step__num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(31, 42, 68, 0.10);
  border: 1px solid rgba(31, 42, 68, 0.18);
  font-weight: 700;
  color: rgba(var(--ink-rgb), 0.82);
  flex: 0 0 auto;
}
.step__body {
  color: rgba(var(--ink-rgb), 0.78);
}
#formate .steps {
  gap: 18px;
}
#formate .step {
  padding: 22px 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 14px;
}
#formate .step__num {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background: rgba(var(--surface-rgb), 0.92);
  border: 1px solid rgba(var(--ink-rgb), 0.12);
  box-shadow: 0 8px 20px rgba(var(--shadow-rgb), 0.04);
  font-size: 16px;
  color: rgba(var(--ink-rgb), 0.88);
}
#formate .step__body {
  max-width: 28ch;
}
.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(var(--ink-rgb), 0.74);
}
.bullets li {
  margin: 8px 0;
}
.bullets--compact {
  margin-top: 6px;
}
.bullets--compact li {
  margin: 6px 0;
}
.muted {
  color: rgba(var(--ink-rgb), 0.64);
  margin: 12px 0 0;
}
.about {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}
.about--center {
  align-items: center;
}
.about--center .about__copy {
  text-align: left;
  justify-self: center;
  max-width: 72ch;
}
.about--center .about__copy h2 {
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.about__p {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.76);
  font-size: 17px;
  line-height: 1.8;
}
.about__p + .about__p {
  margin-top: 12px;
}
.faq {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(var(--surface-rgb), 0.66);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq__item {
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__item summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 650;
  color: rgba(var(--ink-rgb), 0.82);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary::after {
  content: "+";
  margin-left: auto;
  flex: 0 0 auto;
  align-self: center;
  color: rgba(var(--ink-rgb), 0.54);
}
.faq__item[open] summary::after {
  content: "x";
}
.faq__body {
  padding: 0 18px 16px;
  color: rgba(var(--ink-rgb), 0.74);
}
.cta {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
  padding: 32px 28px;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(920px 460px at 18% 6%, rgba(181, 139, 47, 0.22), transparent 60%),
    radial-gradient(760px 420px at 92% 115%, rgba(202, 163, 90, 0.16), transparent 55%),
    rgba(var(--surface-rgb), 0.74);
  border: 1px solid rgba(181, 139, 47, 0.22);
  box-shadow: var(--shadow);
}
html[data-theme="dark"] .cta {
  background:
    radial-gradient(920px 460px at 18% 6%, rgba(181, 139, 47, 0.18), transparent 58%),
    radial-gradient(760px 420px at 92% 115%, rgba(202, 163, 90, 0.10), transparent 58%),
    rgba(var(--surface-rgb), 0.62);
  border-color: rgba(181, 139, 47, 0.18);
}
.cta__media {
  justify-self: center;
  overflow: visible;
}
.cta__actions {
  display: grid;
  gap: 14px;
  width: min(420px, 100%);
}
.cta__main {
  max-width: 72ch;
}
.workshop-cta--single {
  grid-template-columns: 1fr;
}
.workshop-cta--single .cta__main {
  max-width: 78ch;
  justify-self: center;
  text-align: center;
}
.workshop-cta--single h2 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.workshop-cta--single .sublead {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.workshop-cta--single .contact-list {
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding-left: 1.15em;
  text-align: left;
  display: grid;
  gap: 8px;
}
.workshop-cta--single .cta__actions {
  margin-left: auto;
  margin-right: auto;
}
.workshop-cta__mail {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.workshop-cta__mail a {
  color: rgba(var(--ink-rgb), 0.66);
  text-decoration: none;
}
.workshop-cta__mail a:hover,
.workshop-cta__mail a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}
.cta__img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 76px;
  background: rgba(var(--bg-rgb), 0.90);
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.footer__brand {
  font-weight: 700;
}
.footer__muted {
  color: rgba(var(--ink-rgb), 0.62);
  font-size: 13px;
  margin-top: 4px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(var(--ink-rgb), 0.72);
  font-size: 14px;
}
.footer__links a:hover {
  color: var(--ink);
}
.mobilebar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: rgba(var(--bg-rgb), 0.78);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  z-index: 40;
  transform: translateY(calc(100% + 18px));
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition:
    transform 420ms var(--ease-soft),
    opacity 260ms ease,
    filter 420ms var(--ease-soft),
    background 320ms var(--ease-soft),
    border-color 320ms var(--ease-soft);
}
.mobilebar.mobilebar--visible {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.mobilebar__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.mobilebar__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.mobilebar__meta {
  font-size: 12px;
  color: rgba(var(--ink-rgb), 0.62);
}
.mobilebar.mobilebar--attention .btn {
  animation: mobilebar-button-attention 760ms var(--ease-soft) 1;
}
@keyframes mobilebar-button-attention {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  30% {
    transform: translateY(-1px) scale(1.02);
  }
  55% {
    transform: translateY(0) scale(0.995);
  }
}
@media (max-width: 980px) {
.hero {
    padding: 34px 0 54px;
  }
.hero__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: center;
  }
.hero__media {
    justify-self: center;
  }
.steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
body {
    font-size: 18px;
  }
p {
    font-size: 18px;
  }
.hero {
    min-height: auto;
    align-items: start;
    padding: 18px 0 22px;
  }
.hero__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }
.hero__media {
    grid-row: 1;
  }
.hero__copy {
    grid-row: 2;
  }
.hero__cta {
    width: 100%;
  }
.nav a:not(.btn) {
    display: none;
  }
.nav .btn {
    display: none !important;
  }
.nav > .theme-toggle:not(.theme-toggle--menu) {
    display: none;
  }
.nav-toggle {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }
.header.header--scrolled .nav-toggle {
    border-color: rgba(var(--ink-rgb), 0.10);
    box-shadow: 0 10px 24px rgba(var(--shadow-rgb), 0.06);
  }
.nav-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    min-width: 300px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(var(--ink-rgb), 0.10);
    background: rgba(var(--surface-rgb), 0.96);
    box-shadow: 0 18px 36px rgba(var(--shadow-rgb), 0.10);
    display: grid;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      opacity 200ms ease,
      transform 220ms var(--ease-soft),
      visibility 0ms linear 220ms;
  }
.nav.nav--menu-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 200ms ease,
      transform 220ms var(--ease-soft),
      visibility 0ms linear 0ms;
  }
.nav-menu a {
    display: block !important;
    padding: 18px 16px;
    border-radius: 16px;
    background: transparent;
    font-size: 18px;
    line-height: 1.25;
  }
.nav-menu a[aria-current="page"] {
    background: rgba(var(--ink-rgb), 0.06);
  }
.nav-menu .theme-toggle--menu {
    display: flex;
    width: 100%;
    padding: 16px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(var(--ink-rgb), 0.10);
    border-radius: 16px;
    justify-content: space-between;
    background: transparent;
  }
.nav-menu .theme-toggle__label {
    display: inline;
    color: rgba(var(--ink-rgb), 0.82);
    font-size: 18px;
    font-weight: 400;
  }
#formate .step__num {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
.steps {
    grid-template-columns: 1fr;
  }
.grid-2 {
    grid-template-columns: 1fr;
  }
.about {
    grid-template-columns: 1fr;
  }
.about__aside {
    order: -1;
  }
.cta {
    grid-template-columns: 1fr;
  }
.cta__img {
    max-width: 420px;
  }
.footer__inner {
    flex-direction: column;
  }
.mobilebar {
    display: block;
  }
}
@media (max-width: 720px) {
.header .nav > a.btn {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
html {
    scroll-behavior: auto;
  }
.js [data-hero-reveal],
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
.btn {
    transition: none;
  }
}
