:root {
  --bg: #070b14;
  --ink: #101c2e;
  --ivory: #f4efe4;
  --gold: #c9a86a;
  --muted: rgba(244, 239, 228, 0.72);
  --line: rgba(244, 239, 228, 0.12);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
  --cinema-h: 600vh;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ivory);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-intro {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}

/* ===== INTRO ===== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  background: rgba(7, 11, 20, 0.92);
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}
.intro.is-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 0 1.25rem;
}
.intro__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateY(-42vh);
  opacity: 0;
}
.intro.is-drop .intro__mark {
  animation: introDrop 1.7s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
}
.intro.is-split .intro__mark {
  transform: translateY(0);
  opacity: 1;
  animation: introSplit 1.4s var(--ease) forwards;
}
.intro__logo {
  width: clamp(88px, 18vw, 120px);
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
}
.intro__name {
  font-family: var(--display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin-left: 0;
  background: linear-gradient(115deg, var(--ivory) 20%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro.is-split .intro__name {
  animation: introName 1.4s 0.15s var(--ease) forwards;
}
.intro__tag {
  min-height: 1.5em;
  margin: 0;
  max-width: 28ch;
  text-align: center;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 228, 0.62);
  opacity: 0;
}
.intro.is-typing .intro__tag {
  opacity: 1;
  transition: opacity 0.35s ease;
}
.intro__tag .is-cursor {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.1em;
  background: rgba(201, 168, 106, 0.75);
  animation: tagBlink 0.8s steps(1) infinite;
}
@keyframes tagBlink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes introDrop {
  0% { transform: translateY(-42vh); opacity: 0; }
  55% { opacity: 1; }
  82% { transform: translateY(10px); }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes introSplit {
  0% { transform: translateX(0); }
  100% { transform: translateX(clamp(-4rem, -8vw, -2.5rem)); }
}
@keyframes introName {
  0% { max-width: 0; opacity: 0; margin-left: 0; }
  100% { max-width: 18ch; opacity: 1; margin-left: 0.85rem; }
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

/* Soft ambient motion — same palette, very light */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(26, 51, 88, 0.28), transparent 55%),
    radial-gradient(900px 600px at 100% 20%, rgba(201, 168, 106, 0.06), transparent 50%),
    var(--bg);
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform, opacity;
}
.ambient__orb--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  left: -8%;
  top: 12%;
  background: rgba(26, 51, 88, 0.35);
  animation: driftA 22s ease-in-out infinite;
}
.ambient__orb--b {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  right: -10%;
  top: 38%;
  background: rgba(201, 168, 106, 0.09);
  animation: driftB 28s ease-in-out infinite;
}
.ambient__orb--c {
  width: min(42vw, 400px);
  height: min(42vw, 400px);
  left: 35%;
  bottom: -12%;
  background: rgba(16, 28, 46, 0.55);
  animation: driftC 24s ease-in-out infinite;
}
.ambient__sheen {
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(244, 239, 228, 0.025) 48%,
    transparent 62%
  );
  animation: sheen 18s ease-in-out infinite;
}

/* Line field — always behind content */
.ambient__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.ambient__grid {
  position: absolute;
  inset: -20%;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(244, 239, 228, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 228, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 20%, transparent 75%);
  animation: gridDrift 26s linear infinite;
}
.ambient__rule {
  position: absolute;
  left: -15%;
  width: 130%;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 106, 0.04) 20%,
    rgba(244, 239, 228, 0.1) 50%,
    rgba(201, 168, 106, 0.04) 80%,
    transparent 100%
  );
  transform-origin: center;
}
.ambient__rule--1 {
  top: 18%;
  animation: ruleSweep 14s ease-in-out infinite;
}
.ambient__rule--2 {
  top: 42%;
  animation: ruleSweep 18s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.ambient__rule--3 {
  top: 64%;
  animation: ruleSweep 16s ease-in-out infinite;
  animation-delay: -7s;
}
.ambient__rule--4 {
  top: 82%;
  animation: ruleSweep 20s ease-in-out infinite reverse;
  animation-delay: -2s;
}
.ambient__diag {
  position: absolute;
  inset: -30%;
  opacity: 0.16;
  background: repeating-linear-gradient(
    -28deg,
    transparent 0 46px,
    rgba(201, 168, 106, 0.22) 46px 47px,
    transparent 47px 92px
  );
  mask-image: linear-gradient(180deg, transparent, #000 25%, #000 70%, transparent);
  animation: diagSlide 32s linear infinite;
}

@keyframes driftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50% { transform: translate(6%, 8%) scale(1.08); opacity: 1; }
}
@keyframes driftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-8%, -5%) scale(1.12); opacity: 0.85; }
}
@keyframes driftC {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate(5%, -10%) scale(1.06); opacity: 0.9; }
}
@keyframes sheen {
  0%, 100% { transform: translateX(-8%) rotate(0deg); opacity: 0.35; }
  50% { transform: translateX(8%) rotate(2deg); opacity: 0.7; }
}
@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(72px, 72px); }
}
@keyframes ruleSweep {
  0%, 100% { transform: translateX(-3%) scaleX(0.96); opacity: 0.2; }
  50% { transform: translateX(3%) scaleX(1.02); opacity: 0.45; }
}
@keyframes diagSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(92px); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 10s steps(6) infinite;
}
@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  60% { transform: translate(-1%, -1%); }
  80% { transform: translate(1%, 1%); }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 2px;
  z-index: 100;
  background: rgba(255,255,255,0.05);
}
.scroll-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--ivory));
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgba(7,11,20,.75), transparent);
  border-bottom: 1px solid transparent;
  transition: .35s background, .35s border-color;
}
.nav.is-on {
  background: rgba(7,11,20,.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  white-space: nowrap;
}
.nav__logo {
  width: 46px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.nav__name {
  letter-spacing: 0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: .9rem;
}
.nav__links a { color: var(--muted); }
.nav__links a:hover { color: var(--ivory); }
.nav__cta {
  color: var(--ink) !important;
  background: var(--ivory);
  padding: .55rem 1rem;
}
.nav__cta:hover { background: var(--gold) !important; }
.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav__toggle span {
  width: 17px; height: 1.5px; background: var(--ivory);
  transition: transform .3s var(--ease);
}
.nav.open .nav__toggle span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav.open .nav__toggle span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

/* ===== CINEMA ===== */
.cinema {
  height: var(--cinema-h);
  position: relative;
}
.cinema__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: #05080f;
}
.cinema__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  background: #05080f;
}
.cinema__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(5,8,15,.55) 0%, rgba(5,8,15,.25) 45%, rgba(5,8,15,.55) 100%),
    linear-gradient(180deg, rgba(5,8,15,.45) 0%, transparent 28%, transparent 58%, rgba(5,8,15,.75) 100%);
}
.cinema__hud {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 1rem) clamp(1.4rem, 5vw, 4.5rem) 2.5rem;
  text-align: center;
}
.slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(40rem, calc(100% - 2.8rem));
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, calc(-50% + 22px));
  transition: opacity .55s var(--ease), transform .65s var(--ease), visibility .55s;
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide.is-on {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}
.slide__logo {
  width: clamp(96px, 13vw, 140px);
  height: auto;
  display: block;
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
}
.slide__brand {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: .98;
  margin-bottom: .85rem;
  max-width: 14ch;
  background: linear-gradient(115deg, var(--ivory) 20%, var(--gold) 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.slide__eye, .eye {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .8rem;
  font-weight: 500;
}
.slide h1, .slide h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.slide__lead {
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 38ch;
  line-height: 1.65;
  margin-left: auto;
  margin-right: auto;
}
.slide__hint {
  margin-top: 1.5rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,239,228,.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
}
.slide__hint::after {
  content: "";
  width: 1px;
  height: 1.35rem;
  background: var(--gold);
  animation: tip 1.5s ease-in-out infinite;
}
@keyframes tip {
  0%, 100% { transform: translateY(0); opacity: .35; }
  50% { transform: translateY(7px); opacity: 1; }
}
.slide__tags, .slide__list, .slide__steps {
  list-style: none;
  margin: 1.15rem auto 0;
  padding: 0;
  display: grid;
  gap: .5rem;
  justify-items: center;
  width: 100%;
  max-width: 28rem;
}
.slide__tags {
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: center;
  gap: .55rem;
}
.slide__tags li {
  border: 1px solid rgba(201,168,106,.35);
  padding: .35rem .7rem;
  font-size: .82rem;
  color: rgba(244,239,228,.85);
}
.slide__list li, .slide__steps li {
  position: relative;
  color: rgba(244,239,228,.85);
  text-align: center;
}
.slide__list li::before {
  content: none;
}
.slide__steps li {
  display: flex;
  justify-content: center;
  gap: .85rem;
  padding: .45rem 0;
  border-bottom: 1px solid var(--line);
  max-width: 26rem;
  width: 100%;
}
.slide__steps strong {
  font-family: var(--display);
  color: var(--gold);
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: .75rem 1.25rem;
  margin-top: .4rem;
  background: var(--ivory);
  color: var(--ink);
  border: none;
  font: 500 .92rem var(--sans);
  cursor: pointer;
  transition: background .25s, transform .25s;
}
.btn:hover { background: var(--gold); transform: translateY(-1px); }

/* ========== Content below cinema ========== */
.cinema,
.after,
.footer {
  position: relative;
  z-index: 2;
}
.after {
  background: transparent;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}
.wrap--narrow { max-width: 880px; }
.wrap--faq { max-width: 760px; }

.block {
  padding: clamp(5rem, 11vw, 8rem) 0;
  border-top: 1px solid rgba(244,239,228,.08);
}
.block--tint {
  background: linear-gradient(180deg, rgba(12, 20, 34, 0.72) 0%, rgba(8, 13, 22, 0.35) 100%);
}

.eye--center { text-align: center; }
.block__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  text-align: center;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
}
.block__title--left {
  text-align: left;
  margin-left: 0;
  max-width: 16ch;
}
.block__text {
  display: grid;
  gap: 1.1rem;
  max-width: 62ch;
  margin: 0 auto;
}
.block__text p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.75;
  text-align: center;
}
.block__head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.block__head--center {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.block__lead {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
}
.block__lead--center {
  max-width: 54ch;
  text-align: center;
}

/* Values under Biz Kimiz */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(244,239,228,.12);
}
.values article {
  text-align: center;
  padding: 0 .5rem;
}
.values h3 {
  font-size: 1.25rem;
  margin: 0 0 .55rem;
  color: var(--gold);
}
.values p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.55;
}

/* Services mosaic */
.offer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}
.offer__item {
  position: relative;
  padding: 1.75rem 1.35rem 1.5rem;
  border: 1px solid rgba(244,239,228,.1);
  background: rgba(255,255,255,.015);
  overflow: hidden;
  min-height: 180px;
  transition: border-color .3s, background .3s;
}
.offer__item:hover {
  border-color: rgba(201,168,106,.35);
  background: rgba(201,168,106,.04);
}
.offer__n {
  display: block;
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(201,168,106,.35);
  margin-bottom: 1rem;
}
.offer__item h3 {
  font-size: 1.3rem;
  margin: 0 0 .45rem;
  position: relative;
}
.offer__item p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
  line-height: 1.55;
  position: relative;
  max-width: 28ch;
}

/* Process steps — KORUNAN TASARIM */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244,239,228,.12);
}
.steps li {
  padding: 1.75rem 1.35rem 0 0;
  position: relative;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: .5rem;
  width: calc(100% - 3rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,106,.5), transparent);
  pointer-events: none;
}
.steps em {
  display: block;
  font-family: var(--display);
  font-style: normal;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.steps h3 {
  font-size: 1.25rem;
  margin: 0 0 .45rem;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: .95rem;
  max-width: 22ch;
  line-height: 1.55;
}

/* FAQ */
.faq { border-top: 1px solid rgba(244,239,228,.12); }
.faq details { border-bottom: 1px solid rgba(244,239,228,.1); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 0;
  font-weight: 500;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  margin-top: .35rem;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  margin-top: .55rem;
}
.faq p {
  color: var(--muted);
  padding: 0 0 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
}

/* Contact channels strip */
.channels {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(244,239,228,.12);
  border: 1px solid rgba(244,239,228,.12);
}
.channels li {
  background: rgba(8, 13, 22, 0.82);
  padding: 1.25rem 1.1rem;
  display: grid;
  gap: .4rem;
}
.channels span {
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.channels strong {
  font-weight: 400;
  color: var(--muted);
  font-size: .95rem;
}

.form {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(244,239,228,.12);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.form--wide { max-width: 860px; margin: 0 auto; }
.form__head { display: grid; gap: .4rem; }
.form__title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  margin: 0;
  color: var(--ivory);
}
.form__sub {
  color: var(--muted);
  font-weight: 300;
  font-size: .94rem;
  margin: 0;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-width: 0;
}
.field--full { grid-column: 1 / -1; }
.field__label {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,239,228,.7);
  font-weight: 500;
}
.field__input {
  width: 100%;
  min-height: 52px;
  padding: .85rem 1rem;
  border: 1px solid rgba(244,239,228,.14);
  border-radius: 2px;
  background: rgba(5,8,15,.5);
  color: var(--ivory);
  font: 400 .95rem/1.4 var(--sans);
  outline: none;
  transition: border-color .25s, background .25s, box-shadow .25s;
  appearance: none;
}
.field__input::placeholder { color: rgba(244,239,228,.32); }
.field__input:hover { border-color: rgba(244,239,228,.28); }
.field__input:focus {
  border-color: rgba(201,168,106,.65);
  background: rgba(201,168,106,.04);
  box-shadow: 0 0 0 3px rgba(201,168,106,.1);
}
.field__input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23c9a86a' stroke-width='1.5' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field__input--area {
  min-height: 140px;
  resize: vertical;
  padding-top: 1rem;
}
.field__input option { background: #101c2e; color: var(--ivory); }
.form__foot {
  display: grid;
  gap: .85rem;
  padding-top: .35rem;
  border-top: 1px solid rgba(244,239,228,.1);
}
.btn--block {
  width: 100%;
  justify-content: center;
  min-height: 54px;
  font-size: 1rem;
  margin-top: 0;
}
.form__ok {
  margin: 0;
  color: var(--gold);
  font-size: .92rem;
  text-align: center;
}

.footer {
  border-top: 1px solid rgba(244,239,228,.1);
  padding: 1.75rem 0;
}
.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.footer__brand img {
  width: 40px;
  height: auto;
  display: block;
}
.footer__bar strong,
.footer__brand strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
}
.footer__bar nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}
.footer__bar a {
  color: rgba(244,239,228,.6);
  font-size: .88rem;
  transition: color .25s;
}
.footer__bar a:hover { color: var(--gold); }
.footer__bar > span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 300;
}

@media (max-width: 980px) {
  :root { --cinema-h: 520vh; }
  .block__head,
  .values,
  .offer,
  .channels { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }
  .steps li:not(:last-child)::after { display: none; }
  .cinema__veil {
    background:
      radial-gradient(ellipse 85% 60% at 50% 48%, rgba(5,8,15,.62) 0%, rgba(5,8,15,.35) 50%, rgba(5,8,15,.7) 100%),
      linear-gradient(180deg, rgba(5,8,15,.4) 0%, transparent 35%, rgba(5,8,15,.8) 100%);
  }
}

@media (max-width: 700px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .5rem 1.25rem 1.2rem;
    background: rgba(7,11,20,.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: .35s;
  }
  .nav.open .nav__links {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    width: 100%;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__cta { margin-top: .7rem; border: none !important; }
  .block__head,
  .values,
  .offer,
  .channels,
  .steps,
  .form__grid { grid-template-columns: 1fr; }
  .block__title--left { text-align: center; margin: 0 auto 1rem; }
  .footer__bar { justify-content: center; text-align: center; }
  .footer__bar nav { justify-content: center; }
  .slide__tags {
    grid-auto-flow: row;
    justify-items: center;
  }
  .slide h1, .slide h2 { max-width: 16ch; }
}

@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .slide__hint::after { animation: none; }
  .ambient__orb,
  .ambient__sheen,
  .ambient__grid,
  .ambient__rule,
  .ambient__diag,
  .grain,
  .intro.is-drop .intro__mark,
  .intro.is-split .intro__mark,
  .intro.is-split .intro__name,
  .intro__tag .is-cursor { animation: none !important; }
  .intro__mark {
    transform: translateX(clamp(-4rem, -8vw, -2.5rem));
    opacity: 1;
  }
  .intro__name {
    max-width: 18ch;
    opacity: 1;
    margin-left: 0.85rem;
  }
  .intro__tag { opacity: 1; }
}
