*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #f2ede6;
  --red: #e63119;
  --grey: #2a2a2a;
  --muted: #6b6b6b;
  --light-rgb: 242, 237, 230;
  --dark-rgb: 10, 10, 10;
  --accent-rgb: 230, 49, 25;
  --surface-rgb: 42, 42, 42;
  --muted-rgb: 107, 107, 107;
  --portfolio-bg: #111111;
  --panel-bg: #141414;
  --container: 48px;
  --section-pad: 140px;

  --display: "Bebas Neue", sans-serif;
  --serif: "Playfair Display", serif;
  --body: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: clip;
  cursor: crosshair;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body[data-theme="theme-1"] {
  --black: #0a0a0a;
  --white: #f2ede6;
  --red: #e63119;
  --grey: #2a2a2a;
  --muted: #6b6b6b;
  --light-rgb: 242, 237, 230;
  --dark-rgb: 10, 10, 10;
  --accent-rgb: 230, 49, 25;
  --surface-rgb: 42, 42, 42;
  --muted-rgb: 107, 107, 107;
  --portfolio-bg: #111111;
  --panel-bg: #151515;
}

body[data-theme="theme-2"] {
  --black: #081814;
  --white: #edf7f1;
  --red: #1fa37c;
  --grey: #17322a;
  --muted: #82a39a;
  --light-rgb: 237, 247, 241;
  --dark-rgb: 8, 24, 20;
  --accent-rgb: 31, 163, 124;
  --surface-rgb: 23, 50, 42;
  --muted-rgb: 130, 163, 154;
  --portfolio-bg: #0f221d;
  --panel-bg: #10241f;
}

body[data-theme="theme-3"] {
  --black: #08111f;
  --white: #eef4ff;
  --red: #2e7cff;
  --grey: #14243f;
  --muted: #8ca0c8;
  --light-rgb: 238, 244, 255;
  --dark-rgb: 8, 17, 31;
  --accent-rgb: 46, 124, 255;
  --surface-rgb: 20, 36, 63;
  --muted-rgb: 140, 160, 200;
  --portfolio-bg: #0d1830;
  --panel-bg: #0d1932;
}

body[data-theme="theme-4"] {
  --black: #231712;
  --white: #f7efe5;
  --red: #c8653f;
  --grey: #46342b;
  --muted: #9f8577;
  --light-rgb: 247, 239, 229;
  --dark-rgb: 35, 23, 18;
  --accent-rgb: 200, 101, 63;
  --surface-rgb: 70, 52, 43;
  --muted-rgb: 159, 133, 119;
  --portfolio-bg: #2b1f1a;
  --panel-bg: #2a1e18;
}

body[data-theme="theme-5"] {
  --black: #17101c;
  --white: #f8f1fb;
  --red: #d6a63e;
  --grey: #352443;
  --muted: #ad98b8;
  --light-rgb: 248, 241, 251;
  --dark-rgb: 23, 16, 28;
  --accent-rgb: 214, 166, 62;
  --surface-rgb: 53, 36, 67;
  --muted-rgb: 173, 152, 184;
  --portfolio-bg: #22162a;
  --panel-bg: #24172c;
}

body[data-theme="theme-6"] {
  --black: #0b1417;
  --white: #f0fbff;
  --red: #2fc7d3;
  --grey: #20343a;
  --muted: #8ba6ab;
  --light-rgb: 240, 251, 255;
  --dark-rgb: 11, 20, 23;
  --accent-rgb: 47, 199, 211;
  --surface-rgb: 32, 52, 58;
  --muted-rgb: 139, 166, 171;
  --portfolio-bg: #101c21;
  --panel-bg: #132126;
}

body[data-font="font-1"] {
  --display: "Bebas Neue", sans-serif;
  --serif: "Playfair Display", serif;
  --body: "Manrope", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

body[data-font="font-2"] {
  --display: "Oswald", sans-serif;
  --serif: "Cormorant Garamond", serif;
  --body: "Inter", sans-serif;
  --mono: "Space Mono", monospace;
}

body[data-font="font-3"] {
  --display: "Anton", sans-serif;
  --serif: "Libre Baskerville", serif;
  --body: "Sora", sans-serif;
  --mono: "JetBrains Mono", monospace;
}

body[data-font="font-4"] {
  --display: "League Spartan", sans-serif;
  --serif: "Crimson Pro", serif;
  --body: "Plus Jakarta Sans", sans-serif;
  --mono: "Fira Code", monospace;
}

body[data-font="font-5"] {
  --display: "Archivo Narrow", sans-serif;
  --serif: "DM Serif Display", serif;
  --body: "Outfit", sans-serif;
  --mono: "Space Mono", monospace;
}

body[data-font="font-6"] {
  --display: "Teko", sans-serif;
  --serif: "Bodoni Moda", serif;
  --body: "Work Sans", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cursor {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px var(--container);
  mix-blend-mode: difference;
}

body.menu-open nav,
body.dropdown-open nav {
  mix-blend-mode: normal;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.nav-logo {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}

.nav-index {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.menu-toggle {
  border: 1px solid rgba(var(--light-rgb), 0.14);
  background: rgba(var(--dark-rgb), 0.26);
  color: var(--white);
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--dark-rgb), 0.4);
}

.menu-toggle:active {
  transform: scale(0.98);
}

.menu-toggle-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-burger {
  width: 18px;
  height: 14px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.menu-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease;
}

.menu-burger span:nth-child(1) {
  top: 0;
}

.menu-burger span:nth-child(2) {
  top: 6px;
}

.menu-burger span:nth-child(3) {
  top: 12px;
}

body.menu-open .menu-burger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

body.menu-open .menu-burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-burger span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120;
}

body.menu-open .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100vw);
  height: 100vh;
  background: rgba(var(--dark-rgb), 0.94);
  color: var(--white);
  border-left: 1px solid rgba(var(--light-rgb), 0.08);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 130;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

body.preview-open {
  overflow: hidden;
}

.site-preview-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 190;
}

.site-preview-panel {
  position: absolute;
  inset: 0;
  background: #050505;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.34s ease;
  display: flex;
  flex-direction: column;
}

body.preview-open .site-preview-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.preview-open .site-preview-panel {
  transform: translateX(0);
}

.site-preview-bar {
  height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 4, 4, 0.96);
  font-family: var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-preview-title {
  justify-self: center;
  font-size: 10px;
  color: rgba(var(--light-rgb), 0.5);
}

.site-preview-action {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 10px 14px;
  transition: opacity 0.2s ease;
}

.site-preview-action:hover {
  opacity: 0.68;
}

.site-preview-frame-wrap {
  flex: 1;
  min-height: 0;
}

.site-preview-frame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  display: block;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 999;
  border: 0;
  background: transparent;
  color: rgba(var(--light-rgb), 0.6);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu-close:hover {
  color: var(--white);
  background: rgba(var(--light-rgb), 0.08);
}

.menu-scroll {
  overflow-y: auto;
  padding: 72px var(--container) 48px;
  flex: 1;
}

.menu-group {
  display: grid;
  gap: 14px;
}

.menu-group-title {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.55);
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-group-title::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.option-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-btn {
  border: 1px solid rgba(var(--light-rgb), 0.1);
  background: rgba(var(--light-rgb), 0.02);
  color: var(--white);
  text-align: left;
  padding: 14px 14px 13px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
}

.option-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  background: rgba(var(--accent-rgb), 0.08);
}

.option-btn.active {
  border-color: rgba(var(--accent-rgb), 0.65);
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.16);
}

.option-btn strong {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.option-btn span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.55);
}

.theme-chip {
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
}

.theme-chip i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--light-rgb), 0.1);
}

.menu-note {
  font-size: 12px;
  line-height: 1.65;
  color: rgba(var(--light-rgb), 0.5);
  border-top: 1px solid rgba(var(--light-rgb), 0.08);
  padding-top: 18px;
}

/* NAV ACTIONS & DROPDOWNS */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  border: 1px solid rgba(var(--light-rgb), 0.14);
  background: rgba(var(--dark-rgb), 0.26);
  color: var(--white);
  height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--dark-rgb), 0.4);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: max-content;
  background: rgba(var(--dark-rgb), 0.94);
  border: 1px solid rgba(var(--light-rgb), 0.1);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu.themes-menu {
  width: 130px;
}

.op-btn {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.op-btn:hover {
  background: rgba(var(--light-rgb), 0.06);
}

.op-btn.active {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(var(--accent-rgb), 0.16);
}

.op-btn strong {
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
}

.op-btn span {
  font-family: var(--mono);
  font-size: 11px;
}

.op-btn i {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(var(--light-rgb), 0.2);
}

/* MENU NAVIGATION */
.menu-nav-list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-nav-link {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
  width: max-content;
}

.menu-nav-link:hover {
  color: var(--red);
  transform: translateX(8px);
}

.main-section {
  position: relative;
  overflow: hidden;
}

.sec-num {
  font-family: var(--display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--light-rgb), 0.12);
  position: absolute;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

#hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 var(--container) 60px;
  position: relative;
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-num {
  top: 80px;
  right: -40px;
  font-family: "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  line-height: 0.78;
  width: 1.25ch;
  text-align: right;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  max-width: 14ch;
  position: relative;
  z-index: 2;
  text-wrap: balance;
}

body[data-version="v2"] .hero-title {
  font-size: clamp(58px, 9vw, 140px);
}

.hero-title em,
.big-quote em,
.problem-answer em,
.solution-headline em,
.trust-title em,
.faq-title em,
.contact-title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--red);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid rgba(var(--light-rgb), 0.12);
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hero-stat {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}

.hero-stat span {
  display: block;
  font-family: var(--display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-desc {
  grid-column: 2 / 4;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(var(--light-rgb), 0.6);
  max-width: 500px;
  justify-self: end;
}

#problem,
#solution,
#forwhom,
#portfolio,
#trust,
#faq,
#numbers,
#contact {
  padding: var(--section-pad) var(--container);
}

.problem-num {
  bottom: -40px;
  left: -20px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
}

.problem-left {
  border-right: 1px solid rgba(var(--light-rgb), 0.12);
  padding-right: 80px;
}

.problem-right {
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.section-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.big-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.25;
  font-weight: 400;
  max-width: 18ch;
}

.problem-list {
  list-style: none;
  margin-top: 60px;
}

.problem-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(var(--light-rgb), 0.1);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(var(--light-rgb), 0.55);
  display: flex;
  gap: 20px;
}

.problem-list li::before {
  content: attr(data-n);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}

.problem-answer {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 90px);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 24px;
}

.problem-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
}

#solution {
  background: var(--white);
  color: var(--black);
}

#solution .sec-num,
#faq .sec-num {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--dark-rgb), 0.08);
}

#solution .section-label,
#faq .section-label {
  color: rgba(var(--dark-rgb), 0.4);
}

.solution-headline,
.trust-title,
.faq-title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.88;
  max-width: 16ch;
  position: relative;
  z-index: 2;
}

.solution-headline {
  color: var(--black);
  margin-bottom: 80px;
  font-size: clamp(60px, 9vw, 140px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(var(--dark-rgb), 0.12);
  position: relative;
  z-index: 2;
}

.step {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
}

.step-n {
  font-family: var(--display);
  font-size: 80px;
  color: var(--red);
  line-height: 1;
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.step-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(var(--dark-rgb), 0.55);
}

.forwhom-num {
  top: 0;
  right: -20px;
}

.forwhom-header,
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.forwhom-title,
.portfolio-title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  flex: 1 1 auto;
}

.forwhom-sub,
.portfolio-note,
.trust-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 30ch;
  padding-top: 16px;
  flex: 0 0 auto;
}

.professions {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}

.profession {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(var(--light-rgb), 0.1);
  transition: all 0.3s;
}

.profession:hover {
  background: rgba(var(--light-rgb), 0.03);
  padding-left: 16px;
  padding-right: 16px;
}

.profession:hover .prof-name {
  color: var(--red);
}

.prof-index {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
}

.prof-name {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  transition: color 0.3s;
}

.prof-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 30ch;
}

.prof-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  justify-self: end;
  text-align: right;
}

#portfolio {
  background: var(--portfolio-bg);
}

#portfolio .sec-num {
  top: 0;
  left: -20px;
}

.portfolio-note {
  font-family: var(--mono);
  font-size: 11px;
  text-align: right;
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  position: relative;
  z-index: 2;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: var(--white);
  background: var(--grey);
  min-width: 0;
}

.portfolio-preview {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  background: rgba(var(--surface-rgb), 0.72);
}

.preview-scroll {
  width: 100%;
  transform: translateY(0);
  transform-origin: top center;
  transition: transform 0.45s ease;
  will-change: transform;
}

.portfolio-item.is-scrolling:hover .preview-scroll {
  transform: translateY(var(--preview-shift, 0px));
  transition: transform 9s linear;
}

.preview-image,
.preview-placeholder {
  width: 100%;
  display: block;
}

.preview-image {
  filter: grayscale(0.82) saturate(0.18) brightness(0.26) contrast(0.9);
  transform: scale(1.01);
  transform-origin: top center;
  opacity: 0.86;
  transition: filter 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
}

.portfolio-grid:hover .portfolio-item .preview-image {
  filter: grayscale(0.92) saturate(0.08) brightness(0.14) contrast(0.9);
  opacity: 0.28;
}

.portfolio-grid:hover .portfolio-item:hover .preview-image {
  filter: grayscale(0) saturate(1) brightness(1) contrast(1);
  transform: scale(1.03);
  opacity: 1;
}

.portfolio-item.is-active .preview-image {
  filter: grayscale(0) saturate(1) brightness(1) contrast(1);
  transform: scale(1.03);
  opacity: 1;
}

.preview-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ph-block {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px;
  gap: 12px;
}

.ph-line {
  background: rgba(var(--light-rgb), 0.12);
  border-radius: 2px;
  height: 10px;
}

.ph-title {
  background: rgba(var(--light-rgb), 0.25);
  border-radius: 2px;
  height: 24px;
}

.ph-btn {
  background: var(--red);
  opacity: 0.6;
  border-radius: 2px;
  height: 36px;
  width: 120px;
}

.portfolio-info {
  padding: 28px 32px;
  background: linear-gradient(0deg, rgba(var(--dark-rgb), 0.95) 0%, rgba(var(--dark-rgb), 0.28) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s;
  z-index: 2;
}

.portfolio-item:hover .portfolio-info {
  transform: translateY(22px);
  opacity: 0;
}

.port-prof {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(var(--light-rgb), 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.port-name {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.port-blocks {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(var(--light-rgb), 0.46);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.34) 0%, rgba(10, 10, 10, 0.56) 58%, rgba(10, 10, 10, 0.84) 100%),
    rgba(20, 20, 20, 0.12);
  transition: background 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.portfolio-grid:hover .portfolio-item .portfolio-overlay {
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.56) 0%, rgba(12, 12, 12, 0.76) 58%, rgba(12, 12, 12, 0.93) 100%),
    rgba(18, 18, 18, 0.18);
}

.portfolio-grid:hover .portfolio-item:hover .portfolio-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.1) 55%, rgba(8, 8, 8, 0.4) 100%),
    rgba(10, 10, 10, 0.02);
}

.portfolio-item.is-active .portfolio-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.04) 0%, rgba(8, 8, 8, 0.1) 55%, rgba(8, 8, 8, 0.4) 100%),
    rgba(10, 10, 10, 0.02);
}

.visit-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--white);
  background: var(--red);
  padding: 6px 12px;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}

.portfolio-item:hover .visit-hint {
  opacity: 1;
}

.portfolio-item.is-active .visit-hint {
  opacity: 1;
}

.portfolio-item.is-active .portfolio-info {
  transform: translateY(22px);
  opacity: 0;
}

#trust .sec-num {
  bottom: -36px;
  right: -16px;
}

.trust-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.trust-intro {
  padding-top: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(var(--light-rgb), 0.12);
  position: relative;
  z-index: 2;
  margin-bottom: 32px;
}

.trust-card {
  background: var(--grey);
  padding: 34px 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.trust-quote {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.35;
  color: var(--white);
}

.trust-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.55);
  line-height: 1.7;
}

.trust-guarantee {
  border-top: 1px solid rgba(var(--light-rgb), 0.12);
  padding-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.guarantee-title {
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.92;
}

.guarantee-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--light-rgb), 0.66);
  max-width: 42ch;
}

#faq {
  background: var(--white);
  color: var(--black);
}

#faq .sec-num {
  top: -28px;
  left: -14px;
}

.faq-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.faq-note {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(var(--dark-rgb), 0.55);
  max-width: 30ch;
  padding-top: 18px;
}

.faq-list {
  display: grid;
  gap: 1px;
  background: rgba(var(--dark-rgb), 0.12);
  position: relative;
  z-index: 2;
}

.faq-item {
  background: var(--white);
}

.faq-q {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 28px 32px;
  color: var(--black);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}

.faq-q strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-icon {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--red);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  padding: 0 32px 0;
}

.faq-item.open .faq-a-inner {
  padding-bottom: 28px;
}

.faq-a p {
  max-width: 54ch;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(var(--dark-rgb), 0.66);
}

#numbers {
  background: var(--red);
  color: var(--white);
}

#numbers .sec-num {
  color: transparent;
  -webkit-text-stroke: 1px rgba(var(--light-rgb), 0.18);
  bottom: -40px;
  left: -20px;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(var(--light-rgb), 0.2);
  position: relative;
  z-index: 2;
}

.num-cell {
  background: var(--red);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.num-big {
  font-family: var(--display);
  font-size: clamp(60px, 8vw, 120px);
  line-height: 0.9;
}

.num-big.symbol-value {
  font-family: var(--body);
  font-weight: 300;
  line-height: 0.82;
}

.num-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(var(--light-rgb), 0.72);
  margin-top: 24px;
}

.num-manifesto {
  grid-column: span 2;
  background: var(--black);
  padding: 60px 48px;
  display: flex;
  align-items: center;
}

.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.35;
  font-style: italic;
  color: var(--white);
}

.manifesto-text strong {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.4em;
  color: var(--red);
  line-height: 0.9;
  display: block;
  margin-bottom: 4px;
}

#contact {
  padding-bottom: 80px;
}

.contact-num {
  top: 0;
  right: -20px;
}

.contact-main {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.85;
  max-width: 10ch;
  margin-bottom: 80px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid rgba(var(--light-rgb), 0.12);
  padding-top: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.ci-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ci-value {
  font-family: var(--display);
  font-size: 28px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  line-height: 1;
  word-break: break-word;
}

.ci-value:hover {
  color: var(--red);
}

.contact-promise {
  font-family: var(--serif);
  font-size: clamp(20px, 3vw, 36px);
  font-style: italic;
  line-height: 1.35;
  color: rgba(var(--light-rgb), 0.64);
}

.contact-promise strong {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.5em;
  color: var(--white);
  display: block;
  line-height: 0.9;
  margin-top: 8px;
}

footer {
  padding: 32px var(--container);
  border-top: 1px solid rgba(var(--light-rgb), 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-align: right;
}

.footer-meta {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.scroll-ind {
  display: none !important;
}

.scroll-ind::after {
  display: none !important;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --container: 28px;
    --section-pad: 110px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .hero-desc {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: 44ch;
  }

  .problem-grid,
  .trust-guarantee,
  .contact-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-left {
    border-right: 0;
    border-bottom: 1px solid rgba(var(--light-rgb), 0.12);
    padding-right: 0;
    padding-bottom: 48px;
  }

  .problem-right {
    padding-left: 0;
  }

  .steps,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .forwhom-header,
  .portfolio-header,
  .trust-head,
  .faq-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-note {
    text-align: left;
  }

  .profession {
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: start;
    gap: 22px;
  }

  .prof-desc {
    grid-column: 2 / 4;
    max-width: 100%;
  }

  .prof-tag {
    grid-column: 3;
    align-self: start;
    justify-self: end;
  }

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

  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .num-manifesto {
    grid-column: span 2;
  }

  .scroll-ind {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --container: 18px;
    --section-pad: 84px;
  }

  nav {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-index {
    display: none;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 12px;
  }

  .menu-toggle-label {
    font-size: 9px;
  }

  .menu-head {
    padding-left: var(--container);
    padding-right: var(--container);
  }

  .menu-scroll {
    padding-left: var(--container);
    padding-right: var(--container);
  }

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

  #hero {
    padding-bottom: 36px;
  }

  .hero-main {
    padding-top: 120px;
  }

  .hero-num {
    right: -8px;
  }

  .hero-title {
    font-size: clamp(48px, 16vw, 84px);
    max-width: 9ch;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 28px;
    margin-top: 36px;
  }

  .hero-stat span {
    font-size: 40px;
  }

  .hero-desc {
    font-size: 14px;
    line-height: 1.65;
  }

  .section-label {
    margin-bottom: 28px;
  }

  .big-quote {
    max-width: 100%;
  }

  .solution-headline,
  .trust-title,
  .faq-title,
  .contact-title,
  .forwhom-title,
  .portfolio-title {
    max-width: 100%;
  }

  .step {
    padding: 32px 24px;
  }

  .step-n {
    font-size: 56px;
  }

  .step-title {
    font-size: 20px;
  }

  .profession {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .profession:hover {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
  }

  .prof-desc,
  .prof-tag {
    grid-column: auto;
  }

  .prof-tag {
    justify-self: start;
    text-align: left;
  }

  .portfolio-preview {
    height: 290px;
  }

  .site-preview-bar {
    grid-template-columns: 1fr;
    height: auto;
    padding: 14px 16px;
    justify-items: end;
  }

  .site-preview-title {
    display: none;
  }

  #previewBack {
    display: none;
  }

  .ph-block {
    padding: 22px;
  }

  .portfolio-info {
    padding: 20px 22px;
  }

  .port-name {
    font-size: 24px;
  }

  #numbers {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .num-cell,
  .num-manifesto {
    padding: 46px 28px;
  }

  .num-big.symbol-value {
    font-size: clamp(54px, 15vw, 84px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
