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

:root {
  --white: #ffffff;
  --off: #f8f7f4;
  --ink: #0f0f0f;
  --ink2: #1c1c1c;
  --muted: #8a8a8a;
  --line: #e2e0db;
  --blue: #1a56ff;
  --blue-lt: #eef1ff;
  --green: #00b87a;
  --green-lt: #e6f9f3;
  --amber: #f59e0b;
  --amber-lt: #fef9ee;
  --red: #ef4444;
  --red-lt: #fef2f2;
  --violet: #8b5cf6;
  --violet-lt: #f2ebff;
  --hero-bg: #020410;
  --hero-accent: #c84b2f;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "Geist Mono", monospace;
  --sans: "Figtree", sans-serif;
  --r: 6px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.brand-mark,
.footer-brand-mark {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--white);
}

.brand-mark {
  width: 32px;
  height: 32px;
  background: var(--ink);
  border-radius: 6px;
  font-size: 18px;
}

.brand-logo {
  width: 148px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-btn,
.btn-solid,
.btn-outline {
  text-decoration: none;
  border-radius: var(--r);
  transition:
    transform 0.15s,
    background 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.nav-btn {
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.86);
  transform: translateY(-1px);
}

#hero {
  padding: 68px 0 0;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.hero-visual-band {
  position: relative;
  height: calc(100vh - 68px);
  min-height: 620px;
  width: 100%;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero-visual-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 42%, rgba(79, 196, 207, 0.16) 0%, transparent 24%),
    radial-gradient(circle at 62% 56%, rgba(200, 76, 47, 0.11) 0%, transparent 20%),
    radial-gradient(circle at 88% 70%, rgba(123, 108, 255, 0.12) 0%, transparent 26%);
  pointer-events: none;
  z-index: 1;
}

#fx-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-visual-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(2, 4, 16, 0.9) 0%,
      rgba(2, 4, 16, 0.76) 24%,
      rgba(2, 4, 16, 0.4) 44%,
      transparent 68%
    ),
    linear-gradient(
      to bottom,
      rgba(2, 4, 16, 0.32) 0%,
      transparent 30%,
      transparent 70%,
      rgba(2, 4, 16, 0.42) 100%
    );
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 5.5vw;
  max-width: 500px;
  z-index: 3;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: hero-up 0.7s 0.2s ease both;
}

.hero-eyebrow-line {
  width: 28px;
  height: 1px;
  background: var(--hero-accent);
}

.hero-eyebrow span:last-child {
  font-family: "Outfit", var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hero-accent);
}

.hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  font-size: clamp(42px, 4.8vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--white);
  opacity: 0;
  animation: hero-up 0.85s 0.34s ease both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--hero-accent);
}

.hero-descriptor {
  margin-top: 28px;
  max-width: 360px;
  font-family: "Outfit", var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: hero-up 0.85s 0.5s ease both;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  animation: hero-up 0.85s 0.64s ease both;
}

.hero-cta-primary,
.hero-cta-link {
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.hero-cta-primary {
  font-family: "Outfit", var(--sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--hero-bg);
  background: var(--white);
  padding: 12px 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
}

.hero-cta-primary:hover {
  background: var(--hero-accent);
  color: var(--white);
}

.hero-cta-link {
  font-family: "Outfit", var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  letter-spacing: 0.04em;
}

.hero-cta-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-visual-badge {
  position: absolute;
  right: 56px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(10, 12, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  z-index: 3;
  opacity: 0;
  animation: hero-up 0.8s 0.9s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hero-accent);
  animation: hero-blink 2s ease-in-out infinite;
}

.hero-badge-text {
  font-family: "Outfit", var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.btn-solid {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  box-shadow: 0 4px 14px rgba(26, 86, 255, 0.3);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 86, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 24px;
  border: 1.5px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  background: var(--off);
}

.hero-card,
.pcard,
.cf {
  background: var(--white);
  border: 1px solid var(--line);
}

/* Smaller card */
.hero-card {
  border-radius: 14px;
  overflow: hidden;
  width: 330px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  animation: fade-up 0.8s 0.3s both;
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hcard-head {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcard-body {
  padding: 14px;
}

.hcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.hcard-stat {
  padding: 10px;
}

.hcard-stat-num {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  line-height: 1;
}
.hcard-head {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
}
.hero-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hcard-dots {
  display: flex;
  gap: 6px;
}

.hcard-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.tone-red {
  background: var(--red);
}
.tone-amber {
  background: var(--amber);
}
.tone-green {
  background: var(--green);
}

.hcard-title {
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(19, 27, 44, 0.62);
  margin-left: auto;
}

.hcard-body {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hcard-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hcard-row:last-child {
  border-bottom: none;
}

.hcard-row-label {
  font-size: 13px;
  color: rgba(19, 27, 44, 0.68);
  font-weight: 500;
}

.hcard-row-val {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(19, 27, 44, 0.92);
  font-weight: 500;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
}

.chip-blue {
  background: var(--blue-lt);
  color: var(--blue);
}
.chip-green {
  background: var(--green-lt);
  color: var(--green);
}
.chip-amber {
  background: var(--amber-lt);
  color: var(--amber);
}
.chip-red {
  background: var(--red-lt);
  color: var(--red);
}
.chip-violet {
  background: var(--violet-lt);
  color: var(--violet);
}

.hcard-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}

.hcard-stat {
  background: rgba(255, 255, 255, 0.16);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hcard-stat-num {
  font-family: var(--serif);
  font-size: 22px;
  color: rgba(19, 27, 44, 0.96);
  line-height: 1;
}

.hcard-stat-lbl {
  font-size: 11px;
  color: rgba(19, 27, 44, 0.7);
  font-weight: 500;
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  overflow: hidden;
  background: var(--off);
}

.ticker-inner {
  display: flex;
  gap: 56px;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

.ticker-sep {
  color: var(--line);
  font-size: 18px;
}

section {
  padding: 100px 48px;
}

.section-pre {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(26, 86, 255, 0.3);
}

.section-pre::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--blue);
}

.section-h {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

#intro {
  background: var(--white);
  padding-top: 52px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 64px;
  align-items: center;
}

.intro-text {
  padding-right: 8px;
  max-width: 760px;
}

.intro-text .section-h {
  font-size: clamp(30px, 3.6vw, 46px);
  max-width: 760px;
}

.intro-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 20px;
  max-width: 700px;
}

.intro-text p + p {
  margin-top: 14px;
}

.intro-values {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 36px;
}

.intro-values-title {
  background: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
  padding: 18px 22px 10px;
}

.intro-values-title span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(15, 15, 15, 0.28);
}

.val-row {
  background: var(--white);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.2s;
}

.val-row:hover {
  background: var(--off);
}

.val-icon,
.cinfo-icon,
.pcard-icon,
.domain-icon,
.highlight-icon {
  display: grid;
  place-items: center;
}

.val-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--mono);
  flex-shrink: 0;
  margin-top: 1px;
}

.blue {
  background: var(--blue-lt);
  color: var(--blue);
}
.green {
  background: var(--green-lt);
  color: var(--green);
}
.amber {
  background: var(--amber-lt);
  color: var(--amber);
}
.red {
  background: var(--red-lt);
  color: var(--red);
}
.violet {
  background: var(--violet-lt);
  color: var(--violet);
}

.val-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 3px;
}

.val-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.intro-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founders-card {
  background: var(--off);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founders-label,
.origin-card-label,
.domain-num,
.footer-col-title {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founders-label {
  color: var(--muted);
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.founder-av {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  flex-shrink: 0;
}

.founder-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}

.founder-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.origin-card {
  background: linear-gradient(135deg, var(--ink) 0%, #1c2a4a 100%);
  border-radius: 12px;
  padding: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.origin-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 40px solid rgba(255, 255, 255, 0.05);
}

.origin-card-label {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
}

.origin-card-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
}

.origin-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 10px;
  line-height: 1.6;
}

#domains,
#contact {
  background: var(--off);
}

#domains {
  background:
    radial-gradient(
      circle at top left,
      rgba(26, 86, 255, 0.08),
      transparent 34%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 184, 122, 0.08),
      transparent 32%
    ),
    var(--off);
}

.domains-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: start;
}

.domains-copy {
  position: sticky;
  top: 108px;
}

.domains-copy .section-h {
  max-width: 420px;
}

.domains-copy .section-sub {
  max-width: 420px;
}

.domains-slider {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 28px;
  -ms-overflow-style: none;
}

.domains-slider::-webkit-scrollbar {
  display: none;
}

.domains-track {
  display: flex;
  gap: 0;
  width: 100%;
}

.domains-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.domains-status {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
}

.domains-status-current {
  font-size: 24px;
  color: var(--ink);
}

.domains-status-sep,
.domains-status-total {
  font-size: 13px;
  color: var(--muted);
}

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

.domains-nav {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 15, 15, 0.1);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.domains-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(26, 86, 255, 0.24);
}

.domain-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  box-shadow: 0 18px 50px rgba(15, 15, 15, 0.06);
}

.domain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(15, 15, 15, 0.1);
  border-color: rgba(26, 86, 255, 0.24);
}

.domain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(26, 86, 255, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.domain-card-top,
.domain-title,
.domain-desc,
.domain-tags {
  position: relative;
  z-index: 1;
}

.domain-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.domain-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.domain-card:hover .domain-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(26, 86, 255, 0.12);
}

.domain-num {
  position: static;
  color: rgba(15, 15, 15, 0.28);
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.domain-title,
.product-name,
.pcard-title {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.domain-title {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 420px;
}

.domain-desc,
.product-desc,
.pcard-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.domain-tags,
.product-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.dtag,
.pstack {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(15, 15, 15, 0.66);
  background: rgba(255, 255, 255, 0.62);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.domains-slider-wrap {
  min-width: 0;
}

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

.domains-dot {
  width: 26px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 15, 15, 0.12);
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.domains-dot.is-active {
  background: var(--blue);
  transform: scaleX(1.12);
}

#products {
  background: var(--white);
}

.products-header {
  margin-bottom: 64px;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.product-item {
  background: var(--white);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  transition: background 0.2s;
}

.product-item:hover {
  background: var(--off);
}

.product-num,
.footer-copy,
.footer-badge {
  font-family: var(--mono);
}

.product-num {
  font-size: 12px;
  color: var(--muted);
}

.product-name {
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 4px;
}

.product-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.products-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pcard {
  border-radius: 14px;
  overflow: hidden;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}

.pcard:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.pcard-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.pcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 14px;
}

.pcard-title {
  font-size: 16px;
  color: var(--ink);
}

.pcard-subtitle {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.pcard-body {
  padding: 24px 28px;
}

.pcard-body p {
  margin-bottom: 16px;
}

.pcard-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pcard-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.feat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feat-dot.blue {
  background: var(--blue);
}
.feat-dot.green {
  background: var(--green);
}
.feat-dot.amber {
  background: var(--amber);
}
.feat-dot.red {
  background: var(--red);
}
.feat-dot.violet {
  background: var(--violet);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left .section-sub {
  margin-bottom: 40px;
}

.cinfo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cinfo-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.cinfo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  flex-shrink: 0;
}

.cinfo-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.cinfo-val {
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

.cf {
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.cf-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.cf-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.cf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cf-group.full {
  grid-column: span 2;
}

.cf-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.cf-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 255, 0.08);
}

textarea.cf-input {
  resize: vertical;
  min-height: 100px;
}

.cf-select {
  appearance: none;
}

.cf-submit {
  width: 100%;
  margin-top: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(26, 86, 255, 0.25);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
}

.cf-submit:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cf-submit:disabled {
  cursor: wait;
  opacity: 0.82;
  transform: none;
  box-shadow: 0 4px 14px rgba(26, 86, 255, 0.18);
}

.cf-submit.is-success {
  background: var(--green);
}

footer {
  background: var(--ink);
  padding: 60px 48px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand-mark {
  width: auto;
  height: 42px;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 240px;
}

.footer-col-title {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badge {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  nav {
    padding: 0 24px;
  }
  .nav-links {
    display: none;
  }
  section {
    padding: 72px 24px;
  }
  #hero {
    padding: 68px 0 0;
  }
  .hero-visual-band {
    min-height: 620px;
    height: calc(100vh - 68px);
  }
  .hero-overlay {
    padding: 0 28px;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(38px, 9vw, 62px);
  }
  .hero-visual-badge {
    right: 24px;
    bottom: 24px;
  }
  .intro-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .products-cards {
    grid-template-columns: 1fr;
  }
  .domains-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .domains-copy {
    position: static;
  }
  .domains-toolbar {
    margin-bottom: 14px;
  }
  .domain-card {
    padding: 24px;
  }
  .domain-title {
    font-size: 20px;
  }
  .product-item {
    grid-template-columns: 1fr;
  }
  .product-right {
    align-items: flex-start;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .cf-grid {
    grid-template-columns: 1fr;
  }
  .cf-group.full {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  nav,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta-primary {
    width: auto;
  }
  .hero-visual-band {
    min-height: 560px;
  }
  .hero-overlay {
    max-width: 390px;
  }
  .hero-descriptor {
    max-width: 320px;
  }
  .hero-visual-badge {
    left: 20px;
    right: 20px;
    justify-content: center;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}
