:root {
  --bg: #020611;
  --bg-soft: #06133a;
  --panel: rgba(7, 17, 48, 0.82);
  --panel-2: #0a163f;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --text: #f2f2f5;
  --muted: rgba(242,242,245,0.7);
  --muted-dark: rgba(14,16,22,0.55);
  --accent: #1842d5;
  --accent-2: #29bdf9;
  --white-panel: #ededf0;
  --white-border: rgba(16,18,24,0.08);
  --radius: 34px;
  --radius-sm: 24px;
  --shadow: 0 28px 80px rgba(0,0,0,0.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(24,66,213,0.16), transparent 38%),
    linear-gradient(180deg, #01040d 0%, #020611 100%);
  color: var(--text);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1700px, calc(100% - 56px)); margin: 0 auto; }
.section { padding: 42px 0; position: relative; }
.anchor-offset { scroll-margin-top: 120px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}
.eyebrow::after {
  content: "◔";
  font-size: 18px;
  color: rgba(255,255,255,0.9);
}
.section-head { margin-bottom: 40px; }
.section-head-centered { text-align: center; display: grid; justify-items: center; }
.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(50px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.section-head h2 span { color: rgba(255,255,255,0.45); font-weight: 300; }
.section-head p {
  margin: 0;
  max-width: 920px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}
.narrow p { max-width: 850px; }
.btn, .hero-cta, .drawer-cta {
  appearance: none;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  border-radius: 999px;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.btn:hover, .hero-cta:hover, .drawer-cta:hover { transform: translateY(-2px); }
.btn-primary, .hero-cta, .drawer-cta {
  background: #163ac5;
  color: #fff;
  box-shadow: 0 16px 40px rgba(22,58,197,0.28);
}
.btn-primary { padding: 18px 34px; font-size: 18px; }
.btn-full { width: 100%; justify-content: center; min-height: 74px; font-size: 22px; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 22px 0;
  transition: background .25s ease, backdrop-filter .25s ease, box-shadow .25s ease;
}
.header.is-scrolled {
  background: rgba(2,6,17,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.22);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand-mark { width: 232px; height: auto; }
.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 17px;
}
.nav-desktop a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  padding: 10px 14px;
  border-radius: 999px;
}
.nav-desktop a:hover { background: rgba(255,255,255,0.05); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.chip-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 0 10px 0 26px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  white-space: nowrap;
}
.chip-badge {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.2);
}
.mobile-nav-toggle {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: #fff;
  border-radius: 99px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 49;
}
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(480px, 100%);
  height: 100vh;
  background: #1538ba;
  padding: 40px 46px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transform: translateX(105%);
  transition: transform .3s ease;
  z-index: 50;
}
.menu-drawer.open { transform: translateX(0); }
.menu-overlay.open { opacity: 1; pointer-events: auto; }
.menu-close {
  align-self: flex-end;
  font-size: 50px;
  line-height: 1;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.menu-drawer-nav { display: grid; gap: 16px; margin-top: 8px; }
.menu-drawer-nav a {
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
}
.menu-copy { margin-top: auto; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.88); }
.menu-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.drawer-cta { min-height: 60px; display: inline-flex; align-items: center; justify-content: center; padding: 0 28px; background: transparent; border: 1px solid rgba(255,255,255,0.78); }

.hero { padding: 18px 0 26px; }
.hero-shell {
  position: relative;
  min-height: 760px;
  border-radius: 34px;
  overflow: hidden;
  padding: 110px 24px 54px;
  background: radial-gradient(circle at center, rgba(20,72,255,0.12), transparent 52%), linear-gradient(180deg, #020713 0%, #01050f 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,53,185,0.16), transparent 20%, transparent 80%, rgba(18,53,185,0.16));
  pointer-events: none;
}
.hero-headline {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}
.hero-title {
  margin: 42px 0 24px;
  font-size: clamp(120px, 16vw, 268px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 700;
}
.hero-subtitle {
  margin: 0;
  font-size: clamp(28px, 2.2vw, 44px);
  line-height: 1.32;
  color: rgba(255,255,255,0.9);
}
.hero-subtitle span { color: #59a8ff; }
.hero-cta {
  margin-top: 36px;
  min-width: 322px;
  min-height: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.hero-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(840px, 58vw);
  aspect-ratio: 1;
  transform: translate(-50%, -43%);
  border-radius: 42% 58% 62% 38% / 48% 44% 56% 52%;
  background:
    radial-gradient(circle at 38% 30%, rgba(49,244,243,0.92) 0%, rgba(27,152,255,0.8) 28%, rgba(20,66,255,0.9) 58%, rgba(8,7,52,0.94) 82%),
    radial-gradient(circle at 50% 50%, rgba(49,244,243,0.18), transparent 58%);
  filter: blur(1px);
  animation: orb-float 10s ease-in-out infinite alternate;
  box-shadow: 0 0 120px rgba(17,112,255,0.55), 0 0 220px rgba(17,112,255,0.3);
}
.hero-orb::before,
.hero-orb::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(25,180,255,0.22), transparent 70%);
  filter: blur(24px);
}
.hero-orb::after { inset: auto; width: 120%; height: 120%; left: -10%; top: -6%; animation: orb-breathe 8s ease-in-out infinite; }

.panel-light,
.card-light,
.form-card {
  background: var(--white-panel);
  color: #0b0f17;
  border: 1px solid var(--white-border);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.founder-panel {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 48px;
  padding: 56px;
}
.photo-placeholder {
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.38), transparent 26%),
    radial-gradient(circle at 48% 24%, #dfc0b0 0 8%, transparent 9%),
    radial-gradient(circle at 48% 42%, #171b24 0 24%, transparent 25%),
    radial-gradient(circle at 48% 86%, #171b24 0 35%, transparent 36%),
    linear-gradient(180deg, #d9d6d9 0%, #cbc7cc 100%);
  min-height: 560px;
  border: 1px solid rgba(0,0,0,0.08);
}
.photo-founder.tall { min-height: 720px; }
.founder-signoff { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; }
.founder-signoff h3 { font-size: 30px; margin: 0 0 6px; letter-spacing: -0.04em; }
.founder-signoff p { margin: 0; font-size: 18px; color: rgba(15,16,22,0.45); }
.icon-square {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0b0f17;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
}
.founder-copy h2 {
  margin: 0 0 34px;
  font-size: clamp(46px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: #080b11;
}
.founder-copy h2 span { font-weight: 300; color: rgba(11,15,23,0.44); }
.founder-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 32px 28px;
}
.founder-facts article { padding-top: 12px; border-top: 1px solid rgba(15,18,25,0.12); }
.founder-facts h3 { margin: 0 0 16px; font-size: 22px; letter-spacing: -0.03em; }
.founder-facts p { margin: 0; color: rgba(10,13,18,0.56); font-size: 18px; line-height: 1.52; }

.dark-section { padding-top: 68px; }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.project-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 34px;
  min-height: 620px;
}
.project-top { display: flex; justify-content: space-between; gap: 16px; font-size: 18px; color: rgba(11,15,23,0.6); }
.project-top h3 { margin: 0; font-size: 24px; color: #0b0f17; }
.project-logo {
  margin-top: 24px;
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #20232a;
}
.project-logo span { margin-left: 10px; font-weight: 700; }
.project-logo-blue { color: #3193ff; }
.project-logo-green { color: #238552; }
.project-card p { font-size: 18px; line-height: 1.55; color: rgba(12,16,22,0.62); margin: 0; }
.project-cover {
  margin-top: auto;
  min-height: 230px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.project-cover::before { content: ""; position: absolute; inset: 0; }
.project-cover-amber { background: linear-gradient(135deg, #2c0600 0%, #7d1505 52%, #2f0902 100%); }
.project-cover-amber::before { background: radial-gradient(circle at 30% 30%, rgba(255,164,112,0.7), transparent 28%), linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.2) 100%); }
.project-cover-cyan { background: linear-gradient(135deg, #46e4ca, #5cb1ff 42%, #3f69f6 100%); }
.project-cover-cyan::before { background: radial-gradient(circle at 70% 25%, rgba(255,255,255,0.8), transparent 14%), repeating-linear-gradient(135deg, rgba(255,255,255,0.14) 0 32px, rgba(255,255,255,0) 32px 88px); }
.project-cover-green { background: linear-gradient(135deg, #031613, #0f3c32 55%, #081010 100%); }
.project-cover-green::before { background: radial-gradient(circle at 72% 55%, rgba(154,221,180,0.26), transparent 26%), radial-gradient(circle at 65% 55%, rgba(0,0,0,0.65), transparent 18%); }
.project-domain { font-size: 15px; color: rgba(11,15,23,0.78); text-underline-offset: 4px; }
.project-pill {
  position: absolute;
  left: 34px;
  bottom: 166px;
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(232, 236, 246, 0.72);
  color: #fff;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.team-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; align-items: start; }
.team-intro { position: sticky; top: 128px; padding-top: 28px; }
.team-intro h2 { margin: 18px 0 22px; font-size: clamp(54px, 6vw, 90px); line-height: 0.95; letter-spacing: -0.05em; }
.team-intro p { margin: 0 0 26px; color: var(--muted); font-size: 22px; line-height: 1.5; }
.team-mini-avatars { display: flex; margin-bottom: 24px; }
.team-mini-avatars span {
  width: 68px; height: 68px; border-radius: 50%; border: 4px solid #fff; margin-right: -10px;
  background: linear-gradient(180deg, #d6d8df, #8e95a8);
}
.team-note strong { color: #fff; }
.team-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.team-card {
  padding: 28px 28px 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(8,24,88,0.96), rgba(7,18,62,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 430px;
  box-shadow: var(--shadow);
}
.team-card-main { transform: translateY(18px); }
.team-role {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.team-avatar {
  width: 210px; height: 210px; margin: 30px auto 26px; border-radius: 50%; border: 3px solid #1748da;
  background: radial-gradient(circle at 50% 28%, rgba(255,255,255,0.48), transparent 24%), linear-gradient(180deg, #dad6d9, #b4b4ba 58%, #0f1220 59%, #0f1220 100%);
}
.avatar-irina { background: radial-gradient(circle at 50% 24%, rgba(255,255,255,0.38), transparent 21%), linear-gradient(180deg, #dfd8da, #d3cfcf 46%, #caa77d 47%, #e8d0b8 62%, #f3f0f0 100%); }
.avatar-konstantin { background: radial-gradient(circle at 50% 24%, rgba(255,255,255,0.38), transparent 21%), linear-gradient(180deg, #cfd0d3, #b7b8bd 44%, #967561 45%, #d0bfad 60%, #6e7a86 100%); }
.avatar-artur { background: radial-gradient(circle at 50% 24%, rgba(255,255,255,0.38), transparent 21%), linear-gradient(180deg, #d8d8d8, #c7c7c7 44%, #6b5848 45%, #d6c1af 62%, #eae3db 100%); }
.avatar-saule { background: radial-gradient(circle at 50% 24%, rgba(255,255,255,0.38), transparent 21%), linear-gradient(180deg, #d7d7dd, #b9bcc7 46%, #362b2f 47%, #e0c6b7 62%, #131729 100%); }
.team-card h3 { margin: 0 0 12px; font-size: 28px; text-align: center; letter-spacing: -0.04em; }
.team-card p { margin: 0; text-align: center; font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.52; }

.sprint-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 40px 0 24px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
}
.sprint-line::before,
.sprint-line::after {
  content: "";
  height: 1px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}
.sprint-line strong {
  min-height: 54px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 18px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 16px;
}
.method-card {
  padding: 28px 28px 34px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(8,24,88,0.78), rgba(6,18,57,0.6));
  border: 1px solid rgba(255,255,255,0.12);
  min-height: 470px;
}
.method-step {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(45,104,255,0.55);
  background: rgba(24,66,213,0.18);
}
.method-card h3 { margin: 28px 0 14px; font-size: 28px; line-height: 1.12; letter-spacing: -0.04em; }
.method-card p { margin: 0; color: rgba(255,255,255,0.72); font-size: 18px; line-height: 1.55; }

.usefulness-section::before,
.benefits-section::before,
.contacts-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 22%, rgba(22,58,197,0.18), transparent 46%);
  pointer-events: none;
}
.use-grid,
.benefit-grid,
.reviews-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.use-card,
.benefit-card,
.quote-card {
  padding: 40px 34px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(2,6,17,0.58), rgba(2,6,17,0.7));
  box-shadow: var(--shadow);
}
.use-card h3,
.benefit-card h3,
.quote-card h3 { margin: 18px 0 20px; font-size: 30px; line-height: 1.08; letter-spacing: -0.045em; }
.use-card p,
.benefit-card p,
.quote-card p { margin: 0; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.68); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.quote-meta { margin-bottom: 18px; font-size: 18px; color: rgba(255,255,255,0.55); }

.checkup-section .form-card-large {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(5,8,17,0.95), rgba(5,8,17,0.92));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 48px 64px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.field { display: grid; gap: 12px; margin-bottom: 28px; }
.field label { font-size: 17px; color: rgba(255,255,255,0.72); }
input, textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  font-size: 22px;
  padding: 10px 0 16px;
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.34); }
.radio-row { display: flex; gap: 28px; flex-wrap: wrap; }
.choice { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; color: rgba(255,255,255,0.88); }
.choice input { width: 20px; height: 20px; margin: 0; accent-color: #fff; }
.consent-line a { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.form-feedback { min-height: 28px; margin-top: 14px; font-size: 16px; color: rgba(255,255,255,0.72); }

.faq-shell { max-width: 1080px; }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  border-radius: 30px;
  background: rgba(18,18,18,0.78);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 36px;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { margin: 0; font-size: 28px; line-height: 1.18; letter-spacing: -0.04em; }
.faq-item .plus {
  flex: none;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #060606;
  font-size: 34px;
}
.faq-answer { padding: 0 36px 30px; font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.72); }

.contact-showcase { position: relative; padding: 26px 0 0; }
.contact-line {
  position: absolute;
  left: 0; right: 0; top: 52%;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, #173ad2 12%, #173ad2 88%, transparent 100%);
  transform: translateY(-50%) rotate(-6deg);
}
.contact-card-visual {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  margin: 0 auto;
  text-align: center;
}
.contact-badges {
  margin-top: -110px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.inline-link {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.26);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  text-decoration: none;
}
.inline-link img { width: 18px; height: 18px; }
.contact-note { margin-top: 34px; font-size: 28px; line-height: 1.45; }

.footer { padding: 48px 0 70px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr .8fr; gap: 26px; }
.footer-brand { display: inline-block; margin-bottom: 26px; }
.footer p { margin: 0 0 16px; color: rgba(255,255,255,0.5); font-size: 18px; line-height: 1.6; }
.footer-links { display: grid; gap: 16px; align-content: start; }
.footer-links strong { font-size: 18px; margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.82); text-decoration: none; font-size: 18px; }
.footer-links a:hover { text-decoration: underline; }

.cookie-banner {
  position: fixed;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 60;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(3,9,24,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.cookie-inner p { margin: 0; color: rgba(255,255,255,0.76); line-height: 1.55; }
.cookie-inner .btn-primary { padding: 14px 24px; min-width: 140px; }

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.js-reveal.revealed { opacity: 1; transform: translateY(0); }

body.is-ready .hero-title { animation: hero-title-in .9s cubic-bezier(.2,.75,.2,1) both; }
body.is-ready .hero-subtitle { animation: hero-fade-in .9s .12s both; }
body.is-ready .hero-cta { animation: hero-fade-in .9s .22s both; }

@keyframes orb-float {
  0% { transform: translate(-50%, -43%) scale(1) rotate(0deg); border-radius: 42% 58% 62% 38% / 48% 44% 56% 52%; }
  100% { transform: translate(-50%, -45%) scale(1.05) rotate(8deg); border-radius: 55% 45% 38% 62% / 56% 42% 58% 44%; }
}
@keyframes orb-breathe {
  0%,100% { transform: scale(1); opacity: .85; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(30px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1360px) {
  .nav-desktop { display: none; }
  .founder-panel,
  .team-layout { grid-template-columns: 1fr; }
  .projects-grid,
  .method-grid,
  .use-grid,
  .benefit-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .team-intro { position: static; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 100%); }
  .header-inner { grid-template-columns: 1fr auto; }
  .chip-link { display: none; }
  .brand-mark { width: 150px; }
  .hero-shell { min-height: 640px; padding-top: 86px; }
  .hero-title { font-size: clamp(64px, 18vw, 120px); }
  .hero-subtitle { font-size: 22px; }
  .hero-cta { min-width: 260px; min-height: 72px; font-size: 20px; }
  .founder-panel, .checkup-section .form-card-large { padding: 28px; }
  .founder-facts,
  .projects-grid,
  .team-cards,
  .method-grid,
  .use-grid,
  .benefit-grid,
  .reviews-grid,
  .form-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .project-card { min-height: auto; }
  .project-pill { position: static; width: fit-content; margin-top: -86px; }
  .faq-item summary { padding: 24px; }
  .faq-answer { padding: 0 24px 24px; }
  .footer { padding-bottom: 120px; }
  .cookie-inner { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-reveal { opacity: 1; transform: none; }
}

/* NCDT rebrand additions */
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-mark { width: 320px; height: auto; }
.footer-wordmark { width: 300px; }
.hero-shell-ncdt { min-height: 780px; }
.hero-title-ncdt {
  max-width: 1380px;
  margin: 32px 0 24px;
  font-size: clamp(74px, 8.8vw, 152px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.hero-subtitle-ncdt { max-width: 1120px; font-size: clamp(24px, 1.95vw, 36px); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-ghost {
  min-width: 220px;
  min-height: 92px;
  padding: 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  backdrop-filter: blur(12px);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.hero-ghost:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.5); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }
.hero-badges span {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}
.brand-card {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 36px;
  background: radial-gradient(circle at 50% 24%, rgba(255,255,255,0.18), transparent 28%), linear-gradient(180deg, #0b1d58 0%, #06133a 100%);
}
.brand-card img { width: 124px; height: 124px; }
.brand-card-copy { text-align: center; color: #fff; }
.brand-card-copy strong { display: block; font-size: 34px; line-height: 1.05; letter-spacing: -0.04em; margin: 22px 0 12px; }
.brand-card-copy p { margin: 0 auto; max-width: 380px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.72); }
.brand-card-tall { min-height: 720px; }
.lead-quote {
  margin: 0 0 34px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(10, 14, 22, 0.05);
  color: rgba(8,11,17,0.72);
  font-size: 19px;
  line-height: 1.7;
}
.project-logo-image {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.project-logo-image img:first-child { width: 110px; height: auto; }
.project-logo-image img:last-child { width: 72px; height: auto; border-radius: 12px; }
.project-logo-text { font-size: 24px; font-weight: 700; }
.project-logo-stack {
  display: grid;
  gap: 4px;
  align-items: start;
}
.project-logo-stack span { font-size: 62px; font-weight: 800; line-height: 1; }
.project-logo-stack small { font-size: 28px; font-weight: 700; color: rgba(11,15,23,0.62); }
.delivery-layout { align-items: start; }
.delivery-intro { position: sticky; top: 128px; }
.delivery-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
.delivery-card { min-height: 360px; }
.wide-card { grid-column: 1 / -1; min-height: 300px; }
.delivery-icon {
  width: 94px;
  height: 94px;
  margin: 28px auto 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 24%), linear-gradient(180deg, #143ac2, #081e68);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 30px;
  font-weight: 800;
}
.method-grid-four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.media-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.contact-showcase-ncdt .contact-line { transform: translateY(-50%) rotate(-8deg); }
.contact-card-ncdt { max-width: 700px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  line-height: 1.55;
}
.footer-bottom a { color: rgba(255,255,255,0.82); }
.legal { padding: 48px 0 80px; }
.legal-intro {
  max-width: 980px;
  margin: 18px 0 36px;
}
.legal-intro h1 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.legal-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
}
.legal-stack { display: grid; gap: 18px; }
.legal-block {
  padding: 30px 32px;
  border-radius: 28px;
  background: rgba(7, 17, 48, 0.72);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.legal-block h2 {
  margin: 0 0 16px;
  font-size: 28px;
  letter-spacing: -0.04em;
}
.legal-block p,
.legal-block li {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.72;
}
.legal-block ul { margin: 0; padding-left: 22px; }
.legal-block a { color: #8fc0ff; }
@media (max-width: 1360px) {
  .method-grid-four { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .delivery-intro { position: static; }
}
@media (max-width: 900px) {
  .brand-mark { width: 210px; }
  .footer-wordmark { width: 220px; }
  .hero-shell-ncdt { min-height: 700px; }
  .hero-title-ncdt { font-size: clamp(48px, 13vw, 86px); }
  .hero-subtitle-ncdt { font-size: 21px; }
  .hero-ghost { min-height: 72px; font-size: 18px; min-width: 240px; }
  .brand-card { min-height: 420px; }
  .project-logo-image img:first-child { width: 82px; }
  .project-logo-image img:last-child { width: 56px; }
  .delivery-cards,
  .method-grid-four,
  .media-grid { grid-template-columns: 1fr; }
  .wide-card { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .legal-block { padding: 24px; }
}


/* Official NCCT branding */
.official-wordmark { width: min(100%, 420px); height: auto; }
.official-wordmark-dark { width: min(100%, 460px); }
.brand-card-light { background: linear-gradient(180deg, #f6f6f8 0%, #ececef 100%); }
.brand-card-copy-dark, .brand-card-copy-dark p { color: rgba(12,16,24,0.72); }
.brand-card-copy-dark strong { color: #0b0f18; }
.brand-card-ncdt img { width: min(100%, 460px); height: auto; }
.brand-card-contact img { width: min(100%, 430px); height: auto; }
.partner-text-logo { display:inline-flex; align-items:center; justify-content:center; min-height:54px; padding:0 18px; border-radius:999px; border:1px solid rgba(12,16,24,0.16); background:rgba(255,255,255,0.8); color:#10131b; font-size:28px; font-weight:700; letter-spacing:-0.03em; }
.project-logo-duo { gap: 16px; }
.project-logo-duo img { width: 70px; height: 70px; object-fit: contain; }


/* ==== Final NCDT build ==== */
.ncdt-final .brand-mark { width: 290px; }
.ncdt-final .header-actions { gap: 14px; }
.ncdt-final .chip-link { min-height: 58px; padding: 0 8px 0 22px; font-size: 15px; }
.ncdt-final .chip-badge { width: 52px; height: 52px; }
.ncdt-final .burger-clean {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  gap: 5px;
  transition: transform .22s ease, background .22s ease;
}
.ncdt-final .burger-clean:hover { transform: translateY(-1px); background: rgba(255,255,255,0.12); }
.ncdt-final .burger-clean span { width: 24px; height: 2px; background: #fff; opacity: .96; }

.ncdt-final .hero-shell-final {
  min-height: 760px;
  padding: 118px 32px 60px;
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 77, 242, 0.18), transparent 28%),
    linear-gradient(180deg, #020713 0%, #01050f 100%);
}
.ncdt-final .hero-title-final {
  max-width: 1200px;
  margin: 30px 0 20px;
  font-size: clamp(60px, 8vw, 128px);
  line-height: .92;
}
.ncdt-final .hero-subtitle-final {
  max-width: 980px;
  font-size: clamp(22px, 2vw, 34px);
  color: rgba(255,255,255,0.88);
}
.ncdt-final .hero-data-chip {
  margin-top: 18px;
  min-height: 36px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  letter-spacing: .01em;
}
.ncdt-final .hero-orb-small {
  width: min(300px, 20vw);
  transform: translate(-50%, -43%);
  box-shadow: 0 0 50px rgba(17,112,255,0.42), 0 0 90px rgba(17,112,255,0.2);
  filter: blur(.2px);
}
.ncdt-final .hero-ghost,
.ncdt-final .hero-cta { min-height: 82px; font-size: 22px; }
.ncdt-final .hero-badges { margin-top: 22px; }

.ncdt-final .founder-panel-final {
  grid-template-columns: 520px 1fr;
  gap: 54px;
  align-items: start;
}
.ncdt-final .founder-photo-wrap {
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #ececef 0%, #dfe0e4 100%);
  border: 1px solid rgba(0,0,0,0.08);
}
.ncdt-final .founder-real-photo,
.ncdt-final .contact-founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}
.ncdt-final .lead-quote-below {
  margin-top: 22px;
  margin-bottom: 0;
  background: rgba(12,16,24,0.04);
}
.ncdt-final .founder-facts-final p { color: rgba(10,13,18,0.62); }

.ncdt-final .format-section { padding-top: 26px; }
.ncdt-final .format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}
.ncdt-final .format-card {
  padding: 34px 30px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(8,24,88,0.85), rgba(7,18,62,0.72));
  box-shadow: var(--shadow);
}
.ncdt-final .format-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(81,132,255,0.46);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.ncdt-final .format-card h3 {
  margin: 18px 0 14px;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.ncdt-final .format-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.66;
}

.ncdt-final .carousel-shell { position: relative; }
.ncdt-final .carousel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
}
.ncdt-final .carousel-hint {
  color: rgba(255,255,255,0.52);
  font-size: 14px;
}
.ncdt-final .carousel-controls { display: flex; gap: 10px; }
.ncdt-final .carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.ncdt-final .carousel-btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.12); }
.ncdt-final .carousel-btn.light { background: rgba(255,255,255,0.14); }
.ncdt-final .carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(340px, 420px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}
.ncdt-final .carousel-track::-webkit-scrollbar { display: none; }
.ncdt-final .carousel-track.is-dragging { cursor: grabbing; }
.ncdt-final .carousel-card {
  scroll-snap-align: start;
  min-height: 560px;
}
.ncdt-final .case-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 34px;
  background: var(--white-panel);
  color: #0b0f17;
  border: 1px solid rgba(16,18,24,0.08);
  box-shadow: var(--shadow);
}
.ncdt-final .case-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ncdt-final .case-tag {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(10,15,24,0.06);
  color: rgba(10,15,24,0.62);
  font-size: 13px;
}
.ncdt-final .case-id {
  color: rgba(10,15,24,0.34);
  font-size: 15px;
}
.ncdt-final .case-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.ncdt-final .case-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.64;
  color: rgba(10,14,22,0.66);
}
.ncdt-final .case-visual {
  position: relative;
  min-height: 240px;
  margin-top: auto;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0a184a, #1842d5);
}
.ncdt-final .case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  text-underline-offset: 4px;
  color: rgba(10,14,22,0.85);
}
.ncdt-final .muted-link { color: rgba(10,14,22,0.52); text-decoration: none; }
.ncdt-final .case-badge-dark,
.ncdt-final .case-badge-soft,
.ncdt-final .case-badge-big,
.ncdt-final .mock-window,
.ncdt-final .ai-pill,
.ncdt-final .data-box,
.ncdt-final .edu-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.ncdt-final .case-visual-mts { background: linear-gradient(135deg, #160909, #650c1c 48%, #151623 100%); }
.ncdt-final .case-visual-mts img { width: 88px; height: 88px; object-fit: contain; }
.ncdt-final .case-badge-dark {
  min-height: 50px;
  padding: 0 20px;
  margin-left: 14px;
  background: rgba(255,255,255,0.86);
  color: #10131b;
  font-weight: 700;
}
.ncdt-final .case-visual-good { background: radial-gradient(circle at 25% 30%, #4bf1d9 0%, #34b7ff 28%, #1a58ff 66%, #08143b 100%); }
.ncdt-final .case-badge-big {
  width: 134px; height: 134px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 42px; font-weight: 800;
}
.ncdt-final .case-badge-soft {
  position: absolute;
  bottom: 26px;
  left: 26px;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px);
}
.ncdt-final .case-visual-templates {
  background: linear-gradient(135deg, #0f1429, #11246e 50%, #0c173f 100%);
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 14px;
  padding: 20px;
}
.ncdt-final .mock-window {
  min-height: 148px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(228,233,244,0.9));
  color: #0d1324;
  font-size: 17px;
  font-weight: 700;
}
.ncdt-final .case-visual-yauza {
  background: linear-gradient(135deg, #08112b, #0b2b73 50%, #071430 100%);
  gap: 18px;
}
.ncdt-final .case-visual-yauza img { width: 150px; height: auto; filter: saturate(0) brightness(2.5); opacity: .86; }
.ncdt-final .case-visual-ai {
  background: radial-gradient(circle at 72% 25%, rgba(255,255,255,0.22), transparent 14%), linear-gradient(135deg, #48efd3, #37b9ff 36%, #3b6cff 76%, #091848 100%);
  gap: 12px;
  grid-template-columns: repeat(3, auto);
}
.ncdt-final .ai-pill {
  min-height: 48px;
  padding: 0 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-weight: 700;
}
.ncdt-final .case-visual-vdnh { background: linear-gradient(135deg, #0f1429, #2b175e 58%, #081030 100%); }
.ncdt-final .case-visual-data {
  background: linear-gradient(135deg, #06132f, #0d44cb 56%, #06132f 100%);
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}
.ncdt-final .data-box {
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 700;
}
.ncdt-final .case-visual-team {
  background: linear-gradient(135deg, #020611, #0d2b7c 50%, #030817 100%);
  grid-template-columns: repeat(4, 56px);
  gap: 12px;
}
.ncdt-final .team-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f0f1f5, #9197a9);
  border: 3px solid rgba(255,255,255,0.6);
}
.ncdt-final .case-visual-education {
  background: linear-gradient(135deg, #07122e, #1330a2 52%, #081430 100%);
  gap: 12px;
  grid-template-columns: repeat(3, auto);
}
.ncdt-final .edu-card {
  min-height: 96px;
  min-width: 96px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-weight: 700;
  padding: 0 14px;
  text-align: center;
}
.ncdt-final .case-visual-foundation { background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 46%), linear-gradient(135deg, #06132f, #163ac5 46%, #071430 100%); }
.ncdt-final .foundation-ring {
  width: 154px; height: 154px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.24);
  box-shadow: inset 0 0 0 22px rgba(255,255,255,0.06);
}
.ncdt-final .foundation-text {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.78);
  font-size: 22px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ncdt-final .package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.ncdt-final .package-card {
  padding: 34px 32px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(6,18,57,0.84), rgba(6,18,57,0.72));
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}
.ncdt-final .package-card.featured {
  background: linear-gradient(180deg, rgba(19,58,194,0.96), rgba(9,29,98,0.92));
}
.ncdt-final .package-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  font-size: 24px; font-weight: 800;
}
.ncdt-final .package-card h3 {
  margin: 22px 0 16px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.ncdt-final .package-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  font-size: 17px;
}
.ncdt-final .package-card p { margin: 0; color: rgba(255,255,255,0.68); font-size: 17px; line-height: 1.6; }

.ncdt-final .process-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 38px 64px;
  padding: 26px 6px 10px;
}
.ncdt-final .process-cell h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.035em;
}
.ncdt-final .process-cell p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
}

.ncdt-final .use-grid-final,
.ncdt-final .benefit-grid-final { grid-template-columns: repeat(3, minmax(0,1fr)); }
.ncdt-final .use-grid-final .use-card,
.ncdt-final .benefit-grid-final .benefit-card { min-height: 320px; }

.ncdt-final .media-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(32,88,255,0.26), transparent 32%),
    linear-gradient(180deg, rgba(17,53,185,0.1), rgba(17,53,185,0.04));
}
.ncdt-final .media-shell {
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(17,53,185,0.34), rgba(7,17,48,0.56));
  border: 1px solid rgba(112,153,255,0.18);
  box-shadow: var(--shadow);
}
.ncdt-final .media-carousel { grid-auto-columns: minmax(320px, 380px); }
.ncdt-final .media-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at 80% 18%, rgba(88,173,255,0.18), transparent 18%),
    linear-gradient(180deg, rgba(8,24,88,0.64), rgba(6,18,57,0.82));
}
.ncdt-final .media-logo {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.ncdt-final .media-logo-img { padding: 8px 12px; }
.ncdt-final .media-logo-img img { width: 46px; height: auto; }
.ncdt-final .media-card h3 {
  margin: 22px 0 16px;
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.ncdt-final .media-card p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.66;
}
.ncdt-final .media-link { color: rgba(255,255,255,0.94); }

.ncdt-final .contact-showcase-final { padding-top: 22px; }
.ncdt-final .contact-card-final {
  width: min(720px, 100%);
  margin: 0 auto;
}
.ncdt-final .contact-photo-frame {
  position: relative;
  min-height: 760px;
  border-radius: 38px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, #ececef 0%, #dfe0e4 100%);
}
.ncdt-final .contact-logo-floating {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 140px;
  padding: 16px;
  border-radius: 26px;
  background: rgba(2,6,17,0.84);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 16px 38px rgba(0,0,0,0.24);
}
.ncdt-final .contact-badges { margin-top: -92px; }

.ncdt-final .cookie-inner-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ncdt-final .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.ncdt-final .btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  padding: 14px 22px;
  font-size: 16px;
}

@media (max-width: 1360px) {
  .ncdt-final .format-grid,
  .ncdt-final .package-grid,
  .ncdt-final .use-grid-final,
  .ncdt-final .benefit-grid-final { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .ncdt-final .founder-panel-final { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .ncdt-final .brand-mark { width: 220px; }
  .ncdt-final .hero-shell-final { min-height: 680px; padding-top: 92px; }
  .ncdt-final .hero-orb-small {
    width: 190px;
    top: 38%;
  }
  .ncdt-final .hero-title-final { font-size: clamp(44px, 12vw, 74px); }
  .ncdt-final .hero-subtitle-final { font-size: 20px; }
  .ncdt-final .hero-ghost,
  .ncdt-final .hero-cta { min-width: 100%; min-height: 70px; font-size: 19px; }
  .ncdt-final .format-grid,
  .ncdt-final .package-grid,
  .ncdt-final .process-matrix,
  .ncdt-final .use-grid-final,
  .ncdt-final .benefit-grid-final { grid-template-columns: 1fr; }
  .ncdt-final .carousel-track { grid-auto-columns: 88%; }
  .ncdt-final .case-card,
  .ncdt-final .media-card { min-height: auto; }
  .ncdt-final .contact-photo-frame,
  .ncdt-final .founder-photo-wrap { min-height: 440px; }
  .ncdt-final .contact-logo-floating { width: 108px; padding: 12px; }
  .ncdt-final .cookie-inner-final { flex-direction: column; align-items: stretch; }
}

/* ==== Final revision: March 30 ==== */
.ncdt-final .nav-desktop,
.ncdt-final .menu-drawer-nav {
  align-items: center;
}
.ncdt-final .nav-desktop a,
.ncdt-final .menu-drawer-nav a {
  text-decoration: none;
}
.ncdt-final .nav-disabled {
  opacity: .62;
  cursor: default;
}
.ncdt-final .nav-desktop .nav-disabled:hover,
.ncdt-final .menu-drawer-nav .nav-disabled:hover {
  background: transparent;
}
.ncdt-final .chip-badge {
  font-size: 15px;
  line-height: 1;
}
.ncdt-final .menu-close {
  align-self: flex-end;
}
.ncdt-final .drawer-burger {
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
}
.ncdt-final .mobile-nav-toggle,
.ncdt-final .menu-close {
  position: relative;
}
.ncdt-final .mobile-nav-toggle span,
.ncdt-final .menu-close span {
  transition: transform .22s ease, opacity .22s ease;
}
.ncdt-final .mobile-nav-toggle.is-open span:nth-child(1),
.ncdt-final .menu-close.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ncdt-final .mobile-nav-toggle.is-open span:nth-child(2),
.ncdt-final .menu-close.is-open span:nth-child(2) {
  opacity: 0;
}
.ncdt-final .mobile-nav-toggle.is-open span:nth-child(3),
.ncdt-final .menu-close.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.ncdt-final .hero-actions.duo-actions a {
  min-width: 300px;
  min-height: 82px;
}
.ncdt-final .hero-orb-small {
  width: min(280px, 18vw);
}

.ncdt-final .founder-photo-wrap {
  min-height: 700px;
}
.ncdt-final .founder-real-photo {
  object-fit: cover;
  object-position: 72% center;
  transform: scale(1.34);
  transform-origin: center;
}
.ncdt-final .contact-photo-frame {
  min-height: 820px;
}
.ncdt-final .contact-founder-photo {
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.22);
  transform-origin: center;
}

.ncdt-final .media-logo {
  min-height: 46px;
  padding: 0 16px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ncdt-final .media-card {
  min-height: 460px;
  display: grid;
  align-content: start;
}
.ncdt-final .media-link {
  margin-top: auto;
}

.media-popup[hidden] {
  display: none !important;
}
.media-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
}
.media-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 17, 0.72);
  backdrop-filter: blur(8px);
}
.media-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  height: min(86vh, 920px);
  margin: 6vh auto 0;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(7,17,48,0.98), rgba(3,8,24,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 80px rgba(0,0,0,0.45);
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
}
.media-popup-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.media-popup-kicker {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.56);
}
.media-popup-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.04em;
}
.media-popup-close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
.media-popup-note {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.5;
}
.media-popup-source {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}
.media-popup-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
}

@media (max-width: 900px) {
  .ncdt-final .hero-actions.duo-actions a {
    min-width: 100%;
    min-height: 72px;
  }
  .ncdt-final .founder-photo-wrap {
    min-height: 460px;
  }
  .ncdt-final .founder-real-photo {
    object-position: 74% center;
    transform: scale(1.22);
  }
  .ncdt-final .contact-photo-frame {
    min-height: 520px;
  }
  .ncdt-final .contact-founder-photo {
    object-position: 68% center;
    transform: scale(1.12);
  }
  .media-popup-dialog {
    width: calc(100% - 20px);
    height: calc(100vh - 20px);
    margin-top: 10px;
    padding: 16px;
    border-radius: 22px;
  }
  .media-popup-head h3 {
    font-size: 24px;
  }
}


/* ==== Final revision v3 ==== */

.ncdt-final .nav-desktop a,
.ncdt-final .menu-drawer-nav a,
.ncdt-final .hero-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ncdt-final .nav-desktop { gap: 14px; flex-wrap: wrap; }
.ncdt-final .nav-desktop a {
  min-height: 44px;
  min-width: 110px;
  padding: 10px 16px;
}
.ncdt-final .nav-desktop .nav-external,
.ncdt-final .menu-drawer-nav .nav-external { white-space: nowrap; }
.ncdt-final .burger-clean {
  gap: 3px;
}
.ncdt-final .burger-clean span {
  width: 22px;
  height: 2px;
}
.ncdt-final .mobile-nav-toggle.is-open span:nth-child(1),
.ncdt-final .menu-close.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.ncdt-final .mobile-nav-toggle.is-open span:nth-child(3),
.ncdt-final .menu-close.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.ncdt-final .hero-actions.duo-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ncdt-final .hero-actions.duo-actions .hero-action-btn {
  flex: 0 0 300px;
  width: 300px;
  min-width: 300px;
  min-height: 82px;
}
.ncdt-final .hero-ghost {
  margin-top: 36px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.ncdt-final .hero-badges { margin-top: 26px; }
.ncdt-final .founder-photo-wrap {
  min-height: 620px;
}
.ncdt-final .founder-real-photo {
  object-position: center center;
  transform: scale(1.18);
}
.ncdt-final .case-card-bananas .case-visual-bananas {
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(255, 216, 94, 0.35), transparent 22%), linear-gradient(135deg, #1a2f9c, #0b1437 58%, #091122 100%);
  grid-template-columns: repeat(2, auto);
  gap: 12px;
  padding: 28px;
}
.ncdt-final .banana-badge {
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-weight: 700;
}
.ncdt-final .banana-accent {
  position: absolute;
  right: 22px;
  bottom: 22px;
  min-width: 96px;
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: rgba(255, 211, 77, 0.18);
  border: 1px solid rgba(255, 211, 77, 0.36);
  color: #ffe483;
  font-size: 28px;
  font-weight: 800;
}
.ncdt-final .media-shell { padding: 0; background: none; border: 0; box-shadow: none; }
.ncdt-final .media-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.ncdt-final .media-card-clean {
  min-height: 320px;
  display: grid;
  align-content: start;
}
.ncdt-final .media-card-clean .media-link {
  margin-top: auto;
}
.ncdt-final .contact-card-final {
  width: min(380px, 100%);
}
.ncdt-final .contact-photo-frame {
  min-height: 360px;
}
.ncdt-final .contact-founder-photo {
  object-position: center center;
  transform: scale(1.05);
}
.ncdt-final .contact-logo-floating {
  width: 104px;
  padding: 12px;
  border-radius: 20px;
}
.ncdt-final .contact-badges {
  margin-top: -34px;
  justify-content: center;
}
.ncdt-final .contact-note {
  margin-top: 18px;
  text-align: center;
}
.ncdt-final .footer-links a { text-decoration: none; }
.ncdt-final .menu-drawer-nav { gap: 14px; }
.ncdt-final .menu-drawer-nav a { font-size: 24px; min-height: 42px; }
@media (max-width: 1360px) {
  .ncdt-final .media-grid-clean {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .container { width: min(100% - 28px, 100%); }
  .ncdt-final .hero-actions.duo-actions .hero-action-btn {
    flex: 1 1 100%;
    width: 100%;
    min-width: 100%;
    min-height: 72px;
  }
  .ncdt-final .media-grid-clean,
  .ncdt-final .format-grid,
  .ncdt-final .benefit-grid-final {
    grid-template-columns: 1fr;
  }
  .ncdt-final .contact-card-final {
    width: min(100%, 340px);
  }
  .ncdt-final .contact-photo-frame {
    min-height: 280px;
  }
  .ncdt-final .founder-photo-wrap {
    min-height: 420px;
  }
  .ncdt-final .founder-real-photo {
    transform: scale(1.08);
  }
}



/* ==== Final fix: buttons, media carousel, founder photos ==== */
.ncdt-final .hero-actions.duo-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
  flex-wrap: wrap;
}
.ncdt-final .hero-actions.duo-actions .hero-action-btn,
.ncdt-final .hero-actions.duo-actions .hero-cta,
.ncdt-final .hero-actions.duo-actions .hero-ghost {
  width: 330px;
  min-width: 330px;
  flex: 0 0 330px;
  min-height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding: 0 28px;
}
.ncdt-final .hero-actions.duo-actions .hero-ghost {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  text-decoration: none;
}

.ncdt-final .media-shell {
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}
.ncdt-final .media-carousel {
  grid-auto-columns: minmax(320px, 380px);
}
.ncdt-final .media-carousel .media-card-clean {
  min-height: 360px;
  display: grid;
  align-content: start;
}
.ncdt-final .media-carousel .media-link {
  margin-top: auto;
}
.ncdt-final .media-card-clean h3 {
  margin: 22px 0 16px;
}
.ncdt-final .media-card-clean p {
  margin: 0 0 20px;
}

.ncdt-final .founder-panel-final {
  grid-template-columns: minmax(340px, 470px) 1fr;
  align-items: start;
}
.ncdt-final .founder-photo-card {
  width: 100%;
}
.ncdt-final .founder-photo-wrap {
  min-height: 0;
  aspect-ratio: 0.86;
  max-height: 620px;
}
.ncdt-final .founder-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 38%;
  transform: scale(1.12);
  transform-origin: center;
}
.ncdt-final .contact-card-final {
  width: min(360px, 100%);
}
.ncdt-final .contact-photo-frame {
  min-height: 0;
  aspect-ratio: 0.9;
  width: 100%;
}
.ncdt-final .contact-founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 40%;
  transform: scale(1.08);
  transform-origin: center;
}
.ncdt-final .contact-logo-floating {
  width: 96px;
  padding: 10px;
}
.ncdt-final .contact-badges {
  margin-top: -26px;
}
.ncdt-final .contact-note {
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 1360px) {
  .ncdt-final .founder-panel-final {
    grid-template-columns: 1fr;
  }
  .ncdt-final .founder-photo-wrap {
    max-width: 470px;
  }
}

@media (max-width: 900px) {
  .ncdt-final .hero-actions.duo-actions .hero-action-btn,
  .ncdt-final .hero-actions.duo-actions .hero-cta,
  .ncdt-final .hero-actions.duo-actions .hero-ghost {
    width: 100%;
    min-width: 100%;
    flex-basis: 100%;
    min-height: 72px;
  }
  .ncdt-final .media-carousel {
    grid-auto-columns: 88%;
  }
  .ncdt-final .founder-photo-wrap {
    aspect-ratio: 0.92;
    max-width: 100%;
  }
  .ncdt-final .founder-real-photo {
    object-position: 56% 32%;
    transform: scale(1.06);
  }
  .ncdt-final .contact-card-final {
    width: min(300px, 100%);
  }
  .ncdt-final .contact-photo-frame {
    aspect-ratio: 0.92;
  }
  .ncdt-final .contact-founder-photo {
    object-position: 56% 34%;
    transform: scale(1.04);
  }
}
