:root {
  --accent: #d4a24c;
  --ui: Geist, system-ui, sans-serif;
  --display: "ES Klarheit Plakat", system-ui, sans-serif;
  --ink: #1c2418;
  --paper: #f3ebe0;
}


html, body {
  background: var(--paper);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #2a3224;
}

.shell {
  position: relative;
  z-index: 2;
  width: min(1020px, calc(100% - 220px));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 36, 22, 0.72) 0%, rgba(28, 36, 22, 0.42) 34%, rgba(28, 36, 22, 0.22) 52%, rgba(22, 28, 18, 0.48) 100%),
    linear-gradient(180deg, rgba(18, 24, 14, 0.5) 0%, transparent 18%, transparent 78%, rgba(18, 24, 14, 0.58) 100%),
    url("img/hero.a9ea2829145a.jpg") 50% 45% / cover no-repeat;
}

header {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  width: min(1600px, calc(100% - 56px));
  margin: 0 auto;
  padding: 22px 0 0;
  gap: 36px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  display: block;
  width: 32px;
  height: auto;
  color: #fff;
}

.brand span {
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.015em;
}

nav a { color: #fff; }
nav a:hover { color: #fff; opacity: 0.88; }

.actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ui);
  font-weight: 400;
}

.search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 10px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 13.5px;
  color: #fff;
  background: transparent;
}

.login {
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14.5px;
  padding: 6px 2px;
  color: #fff;
}

.signup {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14px;
}

.main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  padding: 48px 0 72px;
  gap: 36px;
}

.copy {
  max-width: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 14px 0 16px;
  border-radius: 999px;
  background: rgba(18, 24, 14, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  font-size: 13px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.eyebrow .sep {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
}

.eyebrow a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow a svg { color: var(--accent); }

h1 {
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 900;
  margin-bottom: 28px;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.lead {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
  margin-bottom: 34px;
}

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 15px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px 0 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  font-family: var(--ui);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
}

.play {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}

.features {
  --feature-line: 1.78em;
  position: relative;
  justify-self: end;
  align-self: center;
  padding-left: 32px;
  width: 100%;
  font-size: clamp(22px, 2.05vw, 32px);
}

.caret-fixed {
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--accent);
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.features-viewport {
  height: calc(var(--feature-line) * 7);
  overflow: hidden;
  font-size: inherit;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 16%,
    #000 84%,
    transparent 100%
  );
}

.features-track {
  will-change: transform;
}

.feature {
  height: var(--feature-line);
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1em;
  letter-spacing: -0.03em;
  color: #fff;
  opacity: 0.18;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  header { width: calc(100% - 40px); }
  .shell { width: calc(100% - 64px); }
  h1 span { white-space: normal; }
  .main {
    grid-template-columns: 1fr;
    padding: 44px 0 20px;
    gap: 36px;
  }
  nav { display: none; }
  .features { justify-self: start; padding-left: 28px; }
}

@media (max-width: 720px) {
  .hero { min-height: calc(100vh - 48px); }
  .shell { width: calc(100% - 32px); }
  header { width: calc(100% - 24px); padding: 16px 0 0; gap: 10px; }
  .search { display: none; }
  .brand span { font-size: 18px; }
  .signup { padding: 0 10px; font-size: 13px; height: 34px; }
  .main { padding: 28px 0 16px; }
  h1 { font-size: 30px; }
  .eyebrow {
    max-width: 100%;
    height: auto;
    padding: 8px 12px;
    flex-wrap: wrap;
    white-space: normal;
  }
  .lead { font-size: 14px; overflow-wrap: anywhere; }
  .cta { flex-direction: column; align-items: stretch; }
  .feature { white-space: normal; font-size: 18px; }
  h1 span { white-space: normal; overflow-wrap: anywhere; }
}

.studio,
.scale,
.tile {
  scroll-margin-top: 24px;
}

.studio {
  background: var(--paper);
  color: var(--ink);
  padding: 88px 0 72px;
}

.studio-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.studio-head h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #2c2418;
  margin-bottom: 16px;
}

.studio-head p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #3d3428;
}

.studio-frame {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 28px;
  background: #f3f3f1;
}

.preview-stage {
  position: relative;
  height: auto;
  aspect-ratio: 1440 / 760;
  background: #f3f3f1;
  overflow: hidden;
}

.preview-scale {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 760px;
  transform-origin: top left;
}

.preview-scale iframe {
  display: block;
  width: 1440px;
  height: 760px;
  border: 0;
  pointer-events: none;
  background: #f3f3f1;
}

@media (max-width: 900px) {
  .studio-frame {
    width: calc(100% - 32px);
  }
}

.scale {
  background: var(--paper);
  color: #2c2418;
  padding: 24px 0 120px;
}

.scale-wrap {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

.scale-intro {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px 40px;
  margin-bottom: 36px;
}

.scale-intro h2 {
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.scale-intro p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #3d3428;
  max-width: 34em;
}

.scale-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 12px;
  background: #1c1b18;
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.scale-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  grid-template-rows: minmax(240px, auto) minmax(320px, auto);
  gap: 16px;
}

.tile {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 36px 32px 24px;
  border-radius: 24px;
  color: #fff;
  background-color: #1c1b18;
  background-size: cover;
  background-position: 50% 40%;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(18, 17, 16, 0.74) 0%, rgba(18, 17, 16, 0.28) 46%, rgba(18, 17, 16, 0.5) 100%);
  pointer-events: none;
}

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

.tile h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.tile p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.5;
}

.tile-well {
  display: flex;
  flex: 0 1 auto;
  min-height: 0;
  margin-top: auto;
  padding: 12px;
  border-radius: 18px;
  background: rgba(252, 250, 247, 0.92);
  box-shadow: 0 12px 32px rgba(18, 17, 16, 0.16);
  color: #2c2418;
  backdrop-filter: blur(16px);
}

.tile-tools {
  grid-column: 1;
  grid-row: 1 / 3;
  background-image: url("img/tile-tools.dd88cb8487bc.jpg");
}

.well-tools,
.well-people,
.well-steps,
.well-cut {
  width: 100%;
  list-style: none;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.well-tools,
.well-people,
.well-steps {
  flex: none;
}

.well-tools li,
.well-people li,
.well-steps li {
  display: flex;
  align-items: center;
  flex: none;
  gap: 12px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  font-family: var(--ui);
  font-size: 14px;
  font-weight: 600;
}

.well-tools li {
  background: rgba(252, 250, 247, 0.62);
  color: #2c2418;
}

.well-tools li.is-on {
  background: #1c1b18;
  color: #fff;
}

.well-tools i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: currentColor;
  opacity: 0.45;
}

.well-tools li.is-on i { background: #d4a24c; opacity: 1; }

.tile-overview {
  grid-column: 2 / 4;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  background-image: url("img/tile-overview.5baa536c8d34.jpg");
  background-position: 50% 45%;
}

.tile-overview p,
.tile-tools p,
.tile-team p,
.tile-flow p { color: rgba(255, 255, 255, 0.82); }

.tile-overview .tile-well {
  margin-top: 0;
  align-self: center;
}

.well-cut {
  justify-content: center;
  gap: 18px;
}

.well-cut > p {
  margin: 0;
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #6a6258;
}

.cut-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-family: var(--ui);
}

.cut-top span {
  font-size: 14px;
  font-weight: 500;
  color: #5a5348;
}

.cut-top strong {
  font-size: 20px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cut-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #e6e0d6;
}

.cut-bar i {
  display: block;
  height: 100%;
  min-width: 6px;
  border-radius: 99px;
  background: #5a5348;
}

.cut-bar.is-own i { background: #d4a24c; }

.tile-team {
  grid-column: 2;
  grid-row: 2;
  background-image: url("img/tile-team.cc4f38eed63a.jpg");
  background-position: 50% 30%;
}

.well-people li {
  background: #f3ebe0;
}

.well-people b {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #2c2418;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.well-people span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.well-people span span {
  font-size: 12px;
  font-weight: 500;
  color: #6a6258;
}

.tile-flow {
  grid-column: 3;
  grid-row: 2;
  background-image: url("img/tile-flow.d7a500567f8f.jpg");
  background-position: 50% 40%;
}

.well-steps li {
  background: #f3ebe0;
}

.well-steps li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #b7ad9f;
}

.well-steps li.is-done::before { background: #d4a24c; }
.well-steps li.is-now { background: #1c1b18; color: #fff; }
.well-steps li.is-now::before { background: #d4a24c; }

@media (max-width: 980px) {
  .scale-wrap { width: calc(100% - 32px); }
  .scale-intro { grid-template-columns: 1fr; align-items: start; }
  .scale-cta { justify-self: start; }
  .scale-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .tile-tools,
  .tile-overview,
  .tile-team,
  .tile-flow { grid-column: auto; grid-row: auto; }
  .tile-overview { grid-template-columns: 1fr; }
}

.stories {
  background: var(--paper);
  color: #2c2418;
  padding: 40px 0 48px;
  overflow: hidden;
}

.stories-head {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px 40px;
}

.stories-head h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}

.stories-head p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.45;
  color: #3d3428;
  max-width: 36em;
}

.stories-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #1c1b18;
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14.5px;
  white-space: nowrap;
}

.stories-stage {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.stories-track {
  display: flex;
  height: 100%;
  gap: 18px;
  will-change: transform;
}

.story {
  flex: 0 0 min(1040px, 72vw);
  height: 540px;
  border-radius: 24px;
  overflow: hidden;
  background: #2a2824;
  color: #fff;
  position: relative;
  cursor: pointer;
}

.story.is-on { cursor: pointer; }

.story-fill {
  position: absolute;
  inset: 0;
}

.story[data-index="0"] .story-fill { background: #2c3128; }
.story[data-index="1"] .story-fill { background: #3a2e26; }
.story[data-index="2"] .story-fill { background: #24352f; }

.story-demo {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  height: 74%;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f3f1;
  box-shadow: 0 22px 48px rgba(8, 10, 8, 0.34);
  pointer-events: none;
}

.story-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 34%, rgba(10, 12, 9, 0.28) 58%, rgba(10, 12, 9, 0.78) 100%);
  pointer-events: none;
}

.story-copy {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 32px;
  max-width: 460px;
  z-index: 3;
}

.story-kicker {
  font-family: var(--ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.story-kicker em {
  font-style: normal;
  opacity: 0.6;
  margin-left: 4px;
}

.story-copy h3 {
  font-size: 22px;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.story-copy p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
}

.story-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-family: var(--ui);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.story-play:hover {
  background: rgba(255, 255, 255, 0.24);
}

.stories-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

.stories-dots button {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #c4b8a8;
  transition: width 0.25s ease, background 0.25s ease;
}

.stories-dots button.is-on {
  width: 22px;
  background: #2c2418;
}

@media (max-width: 800px) {
  .stories-head {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
  }
  .stories-stage { height: 460px; }
  .story { flex-basis: min(1040px, 86vw); height: 460px; }
  .story-copy { left: 20px; right: 20px; bottom: 20px; }
}

.pricing {
  background: var(--paper);
  color: #2c2418;
  padding: 28px 0 100px;
  scroll-margin-top: 24px;
}

.pricing-wrap {
  width: min(1120px, calc(100% - 72px));
  margin: 0 auto;
}

.pricing-wrap > h2 {
  text-align: center;
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.plans {
  display: grid;
  grid-template-columns: minmax(0, 420px);
  justify-content: center;
}

.plan {
  border: 1px solid #ddd6cc;
  border-radius: 16px;
  padding: 22px 20px 20px;
  background: #f7f2eb;
  display: flex;
  flex-direction: column;
}

.plan.is-featured {
  border-color: #2c2418;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.plan h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-badge {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 11.5px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid #d8d0c6;
  white-space: nowrap;
}

.plan.is-featured .plan-badge {
  border-color: #d4b07a;
  color: #8a6424;
}

.plan-desc {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.4;
  color: #5a5348;
  margin-bottom: 18px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--ui);
}

.plan-price .old {
  font-weight: 500;
  font-size: 18px;
  color: #b7ad9f;
  text-decoration: line-through;
  padding-bottom: 4px;
}

.plan-price .now {
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.plan-price .curr {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  padding-bottom: 2px;
}

.plan-price .unit {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.25;
  color: #5a5348;
  padding-bottom: 3px;
}

.plan-note {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 13px;
  color: #5a5348;
  margin-bottom: 16px;
}

.plan-note strong { font-weight: 700; color: #2c2418; }

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 10px;
  font-family: var(--ui);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

.plan-btn.ghost {
  border: 1.5px solid #2c2418;
  color: #2c2418;
  background: transparent;
}

.plan-btn.solid {
  background: #2c2418;
  color: #fff;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.35;
  color: #2c2418;
}

.plan-list li.off { color: #b7ad9f; }

.plan-list svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .pricing-wrap { width: calc(100% - 32px); }
  .plans { grid-template-columns: 1fr; }
}

.prefooter {
  position: relative;
  min-height: 460px;
  height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #060910;
}

.prefooter-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
}

.aurora-a {
  width: 72%;
  height: 48%;
  left: -4%;
  top: 26%;
  background: #17c46a;
  opacity: 0.55;
  transform: rotate(-12deg);
  animation: aurora-a 16s ease-in-out infinite alternate;
}

.aurora-b {
  width: 54%;
  height: 40%;
  right: -6%;
  top: 14%;
  background: #6dffc8;
  opacity: 0.42;
  transform: rotate(8deg);
  animation: aurora-b 20s ease-in-out infinite alternate;
}

.aurora-c {
  width: 38%;
  height: 32%;
  left: 32%;
  top: 38%;
  background: #d4a24c;
  opacity: 0.18;
  animation: aurora-c 14s ease-in-out infinite alternate;
}

@keyframes aurora-a {
  from { transform: rotate(-12deg) translate(0, 0); }
  to { transform: rotate(-6deg) translate(4%, -3%); }
}

@keyframes aurora-b {
  from { transform: rotate(8deg) translate(0, 0); }
  to { transform: rotate(14deg) translate(-3%, 4%); }
}

@keyframes aurora-c {
  from { transform: translate(0, 0) scale(1); opacity: 0.14; }
  to { transform: translate(2%, -4%) scale(1.08); opacity: 0.24; }
}

.prefooter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.prefooter-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  margin-bottom: 18px;
}

.prefooter-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 10px;
  background: #0c0e12;
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  font-size: 14px;
}

.site-footer {
  background: #121110;
  color: #fff;
  padding: 64px 0 28px;
}

.footer-wrap {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr 0.7fr;
  gap: 48px 32px;
  padding-bottom: 56px;
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 18px;
}

.footer-brand p {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28ch;
  margin-bottom: 22px;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-family: var(--ui);
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.footer-col h3 {
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-family: var(--ui);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding: 5px 0;
}

.footer-col a:hover { color: #fff; }

.footer-copy {
  font-family: var(--ui);
  font-weight: 400;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 800px) {
  .footer-wrap { width: calc(100% - 32px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
