:root {
  --bg: #0c0c0d;
  --bg-2: #141413;
  --bg-3: #1b1a18;
  --text: #f4efe6;
  --muted: #a8a196;
  --line: rgba(244, 239, 230, 0.12);
  --gold: #e8c39a;
  --gold-2: #c9a072;
  --sage: #8fbfb3;
  --danger: #e07a6a;
  --radius: 18px;
  --wrap: 1180px;
  --header: 76px;
  --header-offset: calc(var(--header) + env(safe-area-inset-top, 0px));
  --gutter: 1.15rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  background: var(--bg);
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  padding-top: var(--header-offset);
  -webkit-tap-highlight-color: rgba(232, 195, 154, 0.18);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232, 195, 154, 0.08), transparent 55%),
    radial-gradient(800px 500px at -10% 20%, rgba(143, 191, 179, 0.05), transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.02em; margin: 0 0 0.4em; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
  border-radius: 999px;
}
.skip:focus { top: 1rem; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0.07;
  mix-blend-mode: overlay;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.cursor {
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    z-index: 200;
    mix-blend-mode: difference;
    transform: translate(-100px, -100px);
    transition: width .25s var(--ease), height .25s var(--ease), margin .25s var(--ease), opacity .25s;
  }
  .cursor.is-hover {
    width: 44px; height: 44px; margin: -22px 0 0 -22px;
    background: transparent;
    box-shadow: 0 0 0 1px var(--gold);
  }
}

.wrap {
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-offset);
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(12,12,13,0.72);
  border-bottom: 1px solid transparent;
  transform: translate3d(0, 0, 0);
  transition: transform 0.38s var(--ease), border-color .3s, background .3s;
  will-change: transform;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(12,12,13,0.92);
}
.site-header.is-hidden {
  transform: translate3d(0, -100%, 0);
}
.site-header.is-nav-open {
  transform: translate3d(0, 0, 0);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
}

.brand-name {
  font-family: var(--serif);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.82rem;
  white-space: nowrap;
}

.nav-desk {
  display: none;
  gap: 1.6rem;
  margin-left: auto;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-desk a:hover,
.nav-desk a[aria-current] { color: var(--text); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-desk + .header-actions { margin-left: 0; }

.lang { position: relative; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}
.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: 0.4rem;
  min-width: 160px;
  z-index: 20;
}
.lang-list a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}
.lang-list a:hover,
.lang-list a[aria-current] { background: rgba(232,195,154,0.08); color: var(--text); }

.nav-toggle {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
  touch-action: manipulation;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 16px; height: 1.5px;
  background: var(--text);
  transition: transform .25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:not(.sr-only):first-of-type {
  transform: translateY(3.75px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:not(.sr-only):last-of-type {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  inset: var(--header-offset) 0 0 0;
  background: rgba(12,12,13,0.97);
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 1.6rem var(--gutter) calc(2rem + env(safe-area-inset-bottom, 0px));
  gap: 1.1rem;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 7vw, 2.4rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.nav-mobile[hidden] { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), background .25s, color .25s, border-color .25s;
  font-size: 0.92rem;
  touch-action: manipulation;
}
.btn-gold { background: var(--gold); color: #1a1612; }
.btn-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}
.btn-sm { padding: 0.55rem 1rem; font-size: 0.82rem; }

.hero {
  position: relative;
  padding: 2.5rem 0 4rem;
  min-height: calc(100vh - var(--header-offset));
  min-height: calc(100dvh - var(--header-offset));
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 0 0 1.2rem;
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 2.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
  max-width: 36rem;
}
.hero-stats div {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transform: scale(1.04);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,13,.55), transparent 45%);
}
.scroll-hint {
  position: absolute;
  right: 8vw;
  bottom: 2rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem 0;
  color: var(--muted);
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.marquee-track span::after {
  content: "·";
  margin-left: 2.5rem;
  color: var(--gold);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.section h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.9s var(--ease) forwards;
}
.reveal[data-d="1"] { animation-delay: .1s; }
.reveal[data-d="2"] { animation-delay: .2s; }
.reveal[data-d="3"] { animation-delay: .3s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

.manifesto-grid {
  display: grid;
  gap: 1.2rem;
}
.point {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.point h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.point p { color: var(--muted); margin: 0; }

.work-grid {
  display: grid;
  gap: 1.2rem;
}
.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  isolation: isolate;
  background: var(--bg-3);
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  transition: transform 1.1s var(--ease);
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,12,13,.82) 0%, rgba(12,12,13,.15) 55%, transparent 80%);
}
.work-meta {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  z-index: 2;
}
.work-meta .cat {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.work-meta h3 {
  font-size: 1.7rem;
  margin: 0.2rem 0 0.15rem;
}
.work-meta p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.work-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}
.chip {
  font-size: 0.78rem;
  border: 1px solid var(--line);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(12,12,13,0.4);
}
.chip:hover { border-color: var(--gold); color: var(--gold); }

.section-link {
  margin-top: 2rem;
  display: inline-flex;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}

.pkg-grid {
  display: grid;
  gap: 1.1rem;
}
.pkg {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.pkg.is-featured {
  border-color: rgba(232,195,154,0.45);
  background:
    linear-gradient(180deg, rgba(232,195,154,0.08), transparent 40%),
    var(--bg-2);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.pkg-note {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pkg h3 { font-size: 2.1rem; margin: 0.3rem 0; }
.pkg .price {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0.2rem 0 0.8rem;
}
.pkg .price small {
  font-family: var(--font);
  font-size: 0.8rem;
  color: var(--muted);
  margin-right: 0.35rem;
}
.pkg .only {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-left: 0.4rem;
}
.pkg p { color: var(--muted); }
.pkg ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  color: var(--muted);
}
.pkg li {
  padding: 0.45rem 0 0.45rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pkg li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0; top: 0.85rem;
}
.pkg .btn { margin-top: auto; }

.included {
  margin-top: 2.2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.included h3 { font-size: 1.2rem; }
.included ul {
  display: grid;
  gap: 0.4rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  color: var(--muted);
}
.included li::before { content: "— "; color: var(--gold); }

.channels {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.channel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--bg-2);
}
.channel h3 { font-size: 1.35rem; }
.channel p { margin: 0; color: var(--muted); }
.channel-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.step .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
}
.step h3 { font-size: 1.35rem; }
.step p { margin: 0; color: var(--muted); }

.care-split {
  display: grid;
  gap: 1.2rem;
}
.care-card, .plan {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  background: var(--bg-2);
}
.care-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}
.plans { display: grid; gap: 1rem; }
.plan h3 { font-size: 1.35rem; }
.plan .price {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  margin: 0.2rem 0 0.6rem;
}
.plan p { margin: 0; color: var(--muted); }
.plan-abo {
  position: relative;
  padding: 1.7rem 1.6rem 1.5rem;
  max-width: 28rem;
}
.plan-abo::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 1.15rem;
}
.plan-abo h3 {
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  line-height: 1.08;
  margin-bottom: 0.55rem;
}
.plan-abo .price {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.85rem;
}
.plan-abo .price small {
  font-weight: 400;
  font-size: 0.82rem;
  margin-left: 0.25rem;
  color: var(--gold);
  opacity: 0.85;
}
.plan-abo .btn { margin-top: 1.15rem; }
.later-note { color: var(--muted); font-size: 0.88rem; margin-top: 0.8rem; }

.config {
  display: grid;
  gap: 1.2rem;
}
.config-panel, .config-sum {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem;
  background: var(--bg-2);
}
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.4rem 0 1.2rem;
}
.choice {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  color: var(--muted);
}
.choice.is-on {
  border-color: var(--gold);
  color: var(--gold);
}
.config-sum dl { margin: 0 0 1rem; }
.config-sum dt { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.config-sum dd { margin: 0 0 0.8rem; font-family: var(--serif); font-size: 1.25rem; }
.config-sum p { color: var(--muted); font-size: 0.9rem; }

.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  padding: 1.2rem 2rem 1.2rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  cursor: pointer;
  position: relative;
}
.faq-item button::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.15rem;
  color: var(--gold);
  font-family: var(--font);
}
.faq-item.is-open button::after { content: "–"; }
.faq-item .a {
  display: none;
  color: var(--muted);
  padding: 0 0 1.2rem;
  max-width: 46rem;
}
.faq-item.is-open .a { display: block; }

.cta-band {
  margin: 2rem 0 5rem;
  border-radius: 28px;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(232,195,154,0.14), rgba(143,191,179,0.06) 50%, transparent),
    var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.cta-band h2 { font-size: clamp(2rem, 4vw, 3.2rem); max-width: 16ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.page-hero {
  padding: 3.5rem 0 1rem;
}
.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}
.form-row {
  display: grid;
  gap: 1rem;
}
label span, .lbl {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  outline: none;
  font-size: 16px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
}
textarea { min-height: 160px; resize: vertical; }
.channels-pick {
  display: grid;
  gap: 0.6rem;
}
.channels-pick label {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.7rem;
  align-items: center;
  cursor: pointer;
}
.channels-pick input { width: auto; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}
.check input { width: auto; margin-top: 0.25rem; }
.form-error {
  background: rgba(224,122,106,0.12);
  border: 1px solid var(--danger);
  color: #f3c4bc;
  padding: 0.8rem 1rem;
  border-radius: 12px;
}
.hint { color: var(--muted); font-size: 0.88rem; }

.legal {
  max-width: 42rem;
  color: var(--muted);
}
.legal h1, .legal h2 { color: var(--text); }
.legal a { color: var(--gold); text-decoration: underline; }

.thanks-list {
  padding-left: 1.2rem;
  color: var(--muted);
  max-width: 36rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 calc(2rem + env(safe-area-inset-bottom, 0px));
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-grid a { display: block; padding: 0.2rem 0; }
.footer-grid a:hover { color: var(--text); }
.footer-brand { color: var(--text); margin-bottom: 0.8rem; }
.footer-claim { color: var(--text); font-family: var(--serif); font-size: 1.35rem; }
.footer-label {
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}
.avail {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--sage);
}
.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  font-size: 0.8rem;
}

.fab-wa {
  position: fixed;
  right: calc(1.1rem + env(safe-area-inset-right, 0px));
  bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px));
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #083;
  display: grid;
  place-items: center;
  z-index: 40;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  touch-action: manipulation;
}
body.is-nav-open .fab-wa {
  visibility: hidden;
  pointer-events: none;
}

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(12, 12, 13, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom, 0px));
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.cookie-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 46rem;
  line-height: 1.5;
}
.cookie-bar a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-bar-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
body:has(.cookie-bar.is-on) .fab-wa {
  bottom: calc(8.2rem + env(safe-area-inset-bottom, 0px));
}

.browser {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  min-height: 420px;
}
.browser-bar {
  display: flex;
  gap: 6px;
  padding: 0.7rem 1rem;
  background: #1a1a1a;
  border-bottom: 1px solid var(--line);
}
.browser-bar i {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3a3a3a;
  display: block;
}
.browser iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #fff;
}

.article-list { display: grid; gap: 1.1rem; }
.article-teaser {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.5rem 1.6rem 1.4rem;
  background: var(--bg-2);
}
.article-teaser h2 { font-size: 1.7rem; margin: 0.25rem 0 0.5rem; }
.article-teaser p { color: var(--muted); margin: 0 0 0.8rem; }
.article-body p { font-size: 1.05rem; line-height: 1.75; }
.share-btn {
  display: block;
  background: none;
  border: 0;
  padding: 0.2rem 0;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}
.share-btn:hover { color: var(--text); }

@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-1px); }
  .btn-gold:hover { background: #f0d3b0; }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
  .work-card:hover img { transform: scale(1.06); }
  .choice:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
}

@media (max-width: 759.98px) {
  :root { --header: 64px; }

  .header-actions > .btn { display: none; }
  .display { font-size: clamp(2.45rem, 12vw, 3.35rem); }
  .hero { padding: 1.35rem 0 2.6rem; }
  .hero-visual,
  .hero-visual img { min-height: 220px; }
  .scroll-hint { display: none; }
  .hero-stats span { font-size: 0.72rem; }
  .hero-stats strong { font-size: 1.08rem; }
  .hero-cta .btn,
  .cta-actions .btn { width: 100%; }
  .section { padding: 3.4rem 0; }
  .section-head { margin-bottom: 1.8rem; }
  .page-hero { padding: 2rem 0 0.6rem; }
  .page-hero h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .pkg { padding: 1.35rem; }
  .pkg h3 { font-size: 1.8rem; }
  .pkg .price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.2rem 0.45rem; }
  .pkg .only { margin-left: 0; }
  .work-card,
  .work-card img { min-height: 240px; }
  .work-meta h3 { font-size: 1.4rem; }
  .cta-band {
    margin: 1.2rem 0 4.2rem;
    border-radius: 20px;
    padding: 1.6rem 1.25rem 1.7rem;
  }
  .cta-band h2 { max-width: none; }
  .site-footer { padding: 2.4rem 0 calc(5.2rem + env(safe-area-inset-bottom, 0px)); }
  .form { padding-bottom: 3.5rem; }
  .browser { min-height: 260px; }
  .browser iframe { height: 420px; }
  .faq-item button { font-size: 1.12rem; padding-right: 2.2rem; }
  .config-panel,
  .config-sum { padding: 1.2rem; }
  .nav-mobile .btn { width: 100%; margin-top: 0.6rem; font-size: 1rem; font-family: var(--font); }
  .lang-btn { padding: 0.38rem 0.65rem; }
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .btn { flex: 1; }
}

@media (min-width: 760px) {
  :root { --gutter: 1.5rem; }

  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .manifesto-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .channels { grid-template-columns: 1fr 1fr; }
  .care-split { grid-template-columns: 1.1fr 0.9fr; }
  .plans { grid-template-columns: 1fr; }
  .config { grid-template-columns: 1.2fr 0.8fr; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .included ul { grid-template-columns: 1fr 1fr; }
  .work-card.wide { grid-column: span 2; min-height: 380px; }
  .work-card.wide img { min-height: 380px; }
  .article-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1023.98px) {
  .header-actions > .btn { display: none; }
  .site-footer { padding-bottom: calc(5.2rem + env(safe-area-inset-bottom, 0px)); }
}

@media (min-width: 760px) and (max-width: 1023.98px) {
  .section { padding: 4.4rem 0; }
  .hero { padding: 2rem 0 3.2rem; }
  .manifesto-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  :root { --gutter: 1.5rem; }
  .nav-toggle { display: none; }
  .nav-desk { display: flex; }
  .header-inner { gap: 1.5rem; }
  .header-actions { gap: 0.7rem; }
  .header-actions > .btn { display: inline-flex; }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .channels { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .nav-mobile { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .site-header.is-hidden { transform: none; }
}

