:root {
  --text: #111111;
  --text-strong: #0b0b0b;
  --muted: #666a71;
  --muted-2: #7a7f86;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.04);
  --shadow: 0 20px 70px rgba(17, 17, 17, 0.07);
  --shadow-strong: 0 28px 90px rgba(17, 17, 17, 0.10);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1220px;
  --transition-fast: 220ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: 700ms cubic-bezier(0.22, 1, 0.36, 1);
  --accent-bg: linear-gradient(180deg, #1f1f1f 0%, #0f0f0f 100%);
  --soft-card: linear-gradient(180deg, rgba(255,255,255,0.90) 0%, rgba(245,245,243,0.74) 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.96) 0, transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,0.72) 0, transparent 24%),
    linear-gradient(180deg, #fbfbfa 0%, #f2f2ef 42%, #ecece8 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.68;
  animation: floatOrb 13s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(255,255,255,0.92);
}

.orb-2 {
  width: 320px;
  height: 320px;
  top: 520px;
  left: -120px;
  background: rgba(220,220,220,0.70);
  animation-delay: -4s;
}

.orb-3 {
  width: 260px;
  height: 260px;
  bottom: 180px;
  right: 8%;
  background: rgba(255,255,255,0.55);
  animation-delay: -8s;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity var(--transition-smooth),
    transform var(--transition-smooth);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 0.97rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #141414;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.36);
  flex: 0 0 auto;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-link {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.54);
  color: #181818;
  font-size: 0.93rem;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  backdrop-filter: blur(10px);
}

.top-link:hover {
  background: rgba(255,255,255,0.88);
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(17, 17, 17, 0.06);
}

.top-link.primary-mini {
  background: rgba(17,17,17,0.94);
  color: #fff;
  border-color: rgba(17,17,17,0.24);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

.top-link.primary-mini:hover {
  background: #141414;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 58px 0 34px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.52);
  color: #43484f;
  font-size: 0.84rem;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.pill:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.72);
  border-color: var(--line-strong);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 11ch;
  font-weight: 700;
  color: var(--text-strong);
}

.hero p {
  margin: 24px 0 0;
  font-size: 1.08rem;
  line-height: 1.86;
  color: var(--muted);
  max-width: 700px;
}

.lead-strong {
  color: #1b1b1b;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
  letter-spacing: -0.02em;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary {
  background: var(--accent-bg);
  color: #ffffff;
  border: 1px solid rgba(0,0,0,0.26);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #292929 0%, #121212 100%);
  box-shadow: 0 22px 42px rgba(0,0,0,0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.68);
  border: 1px solid var(--line);
  color: #171717;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.94);
  border-color: var(--line-strong);
  box-shadow: 0 16px 32px rgba(17, 17, 17, 0.06);
}

.btn-soft-dark {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.btn-soft-dark:hover {
  background: rgba(255,255,255,0.20);
}

.hero-note {
  margin-top: 22px;
  color: var(--muted-2);
  font-size: 0.95rem;
  line-height: 1.72;
  max-width: 660px;
}

.hero-accent {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  color: #171717;
  letter-spacing: -0.02em;
}

.hero-panel {
  position: relative;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(245,245,243,0.78) 100%);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 100px rgba(17, 17, 17, 0.12);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.58), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 45%);
  pointer-events: none;
}

.card-label {
  position: relative;
  font-size: 0.83rem;
  color: #747980;
  margin-bottom: 12px;
  z-index: 1;
}

.card-title {
  position: relative;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  max-width: 13ch;
  z-index: 1;
  color: var(--text-strong);
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,255,255,0.95), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(217,217,217,0.65), transparent 22%),
    radial-gradient(circle at 50% 82%, rgba(255,255,255,0.72), transparent 20%),
    linear-gradient(135deg, #fbfbfa 0%, #eeeeeb 38%, #f6f6f4 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.85;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.25));
}

.hero-chart {
  position: absolute;
  inset: 0;
}

.hero-chart svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-line {
  fill: none;
  stroke: rgba(17,17,17,0.78);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawLine 2.8s ease forwards;
}

.hero-line.secondary {
  stroke: rgba(17,17,17,0.32);
  stroke-width: 2;
  animation-delay: 0.2s;
}

.hero-area {
  fill: url(#heroFill);
  animation: fadeArea 1.8s ease 0.5s forwards;
  opacity: 0;
}

.hero-node {
  fill: #151515;
  opacity: 0;
  animation: popNode 0.5s ease forwards;
}

.hero-node.n1 { animation-delay: 0.7s; }
.hero-node.n2 { animation-delay: 1.0s; }
.hero-node.n3 { animation-delay: 1.2s; }
.hero-node.n4 { animation-delay: 1.4s; }
.hero-node.n5 { animation-delay: 1.6s; }

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.80);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(17,17,17,0.07);
  backdrop-filter: blur(10px);
  padding: 14px 16px;
  animation: floatCard 6s ease-in-out infinite;
}

.hero-float-card small {
  display: block;
  font-size: 0.76rem;
  color: #7a7f86;
  margin-bottom: 6px;
}

.hero-float-card strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.36;
  letter-spacing: -0.02em;
}

.hero-float-card.c1 {
  top: 20px;
  right: 20px;
  min-width: 160px;
  animation-delay: -1s;
}

.hero-float-card.c2 {
  bottom: 18px;
  left: 18px;
  min-width: 180px;
  animation-delay: -2.3s;
}

.hero-badges {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.hero-badge {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hero-badge:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.94);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.07);
}

.hero-badge small {
  display: block;
  font-size: 0.78rem;
  color: #7a7f86;
  margin-bottom: 6px;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0 8px;
}

.strip div {
  text-align: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.46);
  color: #4d5258;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.strip div:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.70);
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.05);
}

.section {
  padding: 98px 0;
}

.section-head {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.01;
  letter-spacing: -0.048em;
  color: var(--text-strong);
}

.section-head p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.84;
  max-width: 780px;
}

.accent-sentence {
  display: inline-block;
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #171717;
}

.feature-banner,
.philosophy-banner,
.cta-banner,
.consult-banner {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  margin: 0 0 28px;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-banner:hover,
.philosophy-banner:hover,
.cta-banner:hover,
.consult-banner:hover {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.04);
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.08);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(17, 17, 17, 0.08);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.82);
}

.panel.dark-accent {
  background: linear-gradient(180deg, rgba(25,25,25,0.95) 0%, rgba(13,13,13,0.96) 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 26px 48px rgba(0,0,0,0.16);
}

.panel.dark-accent p,
.panel.dark-accent .step-no {
  color: rgba(255,255,255,0.74);
}

.panel-image {
  width: 100%;
  height: 178px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.panel:hover .panel-image {
  transform: scale(1.02);
  filter: saturate(1.03);
}

.panel h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.panel p {
  margin: 0;
  color: #61666d;
  line-height: 1.75;
  font-size: 0.99rem;
}

.step-no {
  color: #7b8087;
  font-size: 0.88rem;
  margin-bottom: 22px;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.panel:hover .step-no {
  transform: translateX(4px);
  color: #4e5359;
}

.brand-structure-wrap,
.philosophy-wrap,
.vyro-wrap,
.cta-wrap,
.trust-wrap,
.faq-wrap,
.consult-wrap {
  padding: 38px;
  border-radius: 36px;
  background: var(--soft-card);
  border: 1px solid rgba(255,255,255,0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-structure-wrap:hover,
.philosophy-wrap:hover,
.vyro-wrap:hover,
.cta-wrap:hover,
.trust-wrap:hover,
.faq-wrap:hover,
.consult-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 74px rgba(17, 17, 17, 0.09);
}

.philosophy-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.philosophy-item,
.trust-item,
.faq-item,
.brand-item {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    background 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.philosophy-item:hover,
.trust-item:hover,
.faq-item:hover,
.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 17, 17, 0.07);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.88);
}

.philosophy-item strong,
.trust-item strong,
.faq-item strong,
.brand-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.philosophy-item span,
.trust-item span,
.faq-item span,
.brand-item span {
  color: #63686f;
  line-height: 1.72;
  font-size: 0.98rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.brand-item.accented {
  background: linear-gradient(180deg, rgba(22,22,22,0.96) 0%, rgba(10,10,10,0.98) 100%);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 26px 48px rgba(0,0,0,0.16);
}

.brand-item.accented strong,
.brand-item.accented span {
  color: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.vyro-visual {
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 24px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  background:
    radial-gradient(circle at 18% 24%, rgba(255,255,255,0.95), transparent 25%),
    radial-gradient(circle at 82% 30%, rgba(210,210,210,0.55), transparent 22%),
    radial-gradient(circle at 52% 75%, rgba(255,255,255,0.7), transparent 18%),
    linear-gradient(135deg, #f8f8f7 0%, #ececea 38%, #f6f6f5 100%);
}

.vyro-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.vyro-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(17,17,17,0.05), rgba(17,17,17,0.22), rgba(17,17,17,0.04));
  animation: driftX 8s ease-in-out infinite;
}

.vyro-line.l1 { top: 22%; left: 8%; width: 44%; animation-delay: -1s; }
.vyro-line.l2 { top: 39%; right: 10%; width: 38%; animation-delay: -3s; }
.vyro-line.l3 { top: 58%; left: 14%; width: 52%; animation-delay: -5s; }
.vyro-line.l4 { top: 74%; right: 12%; width: 30%; animation-delay: -2s; }

.vyro-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #151515;
  box-shadow:
    0 0 0 8px rgba(255,255,255,0.38),
    0 0 0 16px rgba(255,255,255,0.14);
  animation: pulseNode 3.6s ease-in-out infinite;
}

.vyro-node.n1 { top: 19%; left: 24%; }
.vyro-node.n2 { top: 34%; right: 26%; animation-delay: -1.2s; }
.vyro-node.n3 { top: 54%; left: 48%; animation-delay: -2.4s; }
.vyro-node.n4 { top: 70%; right: 18%; animation-delay: -0.8s; }

.vyro-card {
  position: absolute;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(17,17,17,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(17,17,17,0.07);
  padding: 16px 18px;
  min-width: 170px;
  animation: floatCard 6s ease-in-out infinite;
}

.vyro-card small {
  display: block;
  color: #7a7f86;
  font-size: 0.76rem;
  margin-bottom: 7px;
}

.vyro-card strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.vyro-card.c1 { top: 10%; left: 8%; animation-delay: -1s; }
.vyro-card.c2 { top: 26%; right: 8%; animation-delay: -2.2s; }
.vyro-card.c3 { bottom: 16%; left: 18%; animation-delay: -3.4s; }

.vyro-wrap h2,
.cta-wrap h2,
.trust-wrap h2,
.faq-wrap h2,
.consult-wrap h2,
.brand-structure-wrap h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.044em;
  max-width: 13ch;
  color: var(--text-strong);
}

.vyro-wrap p,
.cta-wrap p,
.trust-wrap p,
.faq-wrap p,
.consult-wrap p,
.brand-structure-wrap p {
  margin: 18px 0 0;
  max-width: 780px;
  color: #5f646b;
  line-height: 1.84;
  font-size: 1.03rem;
}

.consult-wrap {
  background:
    linear-gradient(180deg, rgba(22,22,22,0.97) 0%, rgba(9,9,9,0.98) 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 30px 72px rgba(0,0,0,0.18);
}

.consult-wrap .pill {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
}

.consult-wrap h2,
.consult-wrap p {
  color: #fff;
}

.consult-wrap p {
  color: rgba(255,255,255,0.78);
}

.consult-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.consult-point {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.consult-point:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.16);
}

.consult-point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.consult-point span {
  color: rgba(255,255,255,0.72);
  line-height: 1.68;
  font-size: 0.96rem;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 0 0 34px;
  color: #676c72;
  font-size: 0.94rem;
}

.footer strong {
  color: #181818;
  font-weight: 600;
}

@keyframes floatOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.03); }
}

@keyframes pulseNode {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.12); opacity: 1; }
}

@keyframes driftX {
  0%, 100% { transform: translateX(0); opacity: 0.8; }
  50% { transform: translateX(10px); opacity: 1; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
  to { opacity: 0.9; }
}

@keyframes popNode {
  0% { opacity: 0; transform: scale(0.2); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .philosophy-grid,
  .trust-grid,
  .consult-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4,
  .strip,
  .faq-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .topbar {
    padding-top: 18px;
  }

  .topbar-links {
    gap: 8px;
  }

  .hero {
    padding: 30px 0 18px;
    gap: 22px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 14vw, 4.2rem);
  }

  .hero-card,
  .brand-structure-wrap,
  .philosophy-wrap,
  .vyro-wrap,
  .cta-wrap,
  .trust-wrap,
  .faq-wrap,
  .consult-wrap {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-visual,
  .feature-banner,
  .philosophy-banner,
  .cta-banner,
  .consult-banner {
    height: auto;
    min-height: 250px;
  }

  .hero-badges,
  .strip,
  .grid-3,
  .grid-4,
  .philosophy-grid,
  .trust-grid,
  .faq-grid,
  .consult-points,
  .brand-grid {
    grid-template-columns: 1fr;
  }

  .vyro-visual {
    height: 300px;
  }

  .vyro-card {
    min-width: 140px;
    padding: 13px 14px;
  }

  .section {
    padding: 72px 0;
  }

  .vyro-wrap h2,
  .cta-wrap h2,
  .trust-wrap h2,
  .faq-wrap h2,
  .consult-wrap h2,
  .brand-structure-wrap h2 {
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}