:root {
  --navy: #1A2A3A;
  --navy-deep: #101a24;
  --slate: #2C4A6E;
  --slate-soft: #647991;
  --warm: #E8E6E1;
  --sand: #F9F8F6;
  --off: #F4F1EB;
  --white: #FFFFFF;
  --copper: #C97E3A;
  --ink-soft: rgba(26, 42, 58, 0.78);
  --line: rgba(26, 42, 58, 0.10);
  --line-strong: rgba(26, 42, 58, 0.18);

  --shadow-sm: 0 10px 24px rgba(16, 27, 38, 0.06);
  --shadow-md: 0 20px 50px rgba(16, 27, 38, 0.10);
  --shadow-lg: 0 28px 80px rgba(16, 27, 38, 0.16);

  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  --font-serif: "Libre Caslon Display", serif;
  --font-sans: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--navy);
  background:
    radial-gradient(circle at 14% 18%, rgba(184, 203, 220, 0.34), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(77, 104, 132, 0.10), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(201, 126, 58, 0.05), transparent 18%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3f6 50%, #f5f1ea 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.48;
  animation: drift 22s ease-in-out infinite;
}

body::before {
  top: 12%;
  left: 8%;
  width: 34rem;
  height: 16rem;
  background: rgba(255, 255, 255, 0.54);
}

body::after {
  right: 6%;
  bottom: 10%;
  width: 40rem;
  height: 18rem;
  background: rgba(184, 203, 220, 0.24);
  animation-delay: -9s;
}

.page-haze {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.16), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%, transparent 72%, rgba(43,64,87,0.03));
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(43,64,87,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,64,87,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
  font-size: clamp(1.15rem, 1.9vw, 1.52rem);
}

p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.container-wide {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 3rem;
  position: relative;
  z-index: 1;
}

.container-nav {
  width: 100%;
  max-width: 2940px;
  margin: 0 auto;
  padding: 0 3.25rem;
}

.narrow {
  max-width: 980px;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  width: 100%;
  background: rgba(10, 14, 19, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  position: relative;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-left {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.brand {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.header-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  padding: 0.68rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-btn:hover,
.header-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.header-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
}

.header-btn-ghost:hover,
.header-btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.header-btn-primary {
  background: rgba(201, 126, 58, 0.94);
  border-color: rgba(201, 126, 58, 0.18);
  color: var(--white);
}

.header-btn-primary:hover,
.header-btn-primary:focus-visible {
  background: rgba(201, 126, 58, 1);
  color: var(--white);
}

.status-pip {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #4caf7d;
  box-shadow: 0 0 0 4px rgba(76, 175, 125, 0.18);
  flex: 0 0 7px;
}

.search-bar {
  min-width: 260px;
  height: 44px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.search-bar input {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
  outline: none;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.search-bar button {
  width: 48px;
  height: 44px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.user-link {
  min-height: 44px;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.user-link:hover,
.user-link:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.user-icon {
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 1rem;
  line-height: 1;
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
}

.mobile-backdrop {
  display: none;
}

/* Signal strip */

.signal-strip {
  position: relative;
  width: 100%;
  height: 42px;
  overflow: hidden;
  z-index: 80;

  background: linear-gradient(
    180deg,
    rgba(12, 18, 25, 0.96) 0%,
    rgba(16, 24, 33, 0.92) 100%
  );

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Track that moves */
.signal-track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: signal-scroll 48s linear infinite;
}

.signal-group {
  height: 42px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: max-content;
  gap: 1rem;
  padding-right: 2rem;
  white-space: nowrap;
}

/* Text */
.signal-group span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Separator dot */
.signal-sep {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 999px;
  background: rgba(201, 126, 58, 0.65);
}

/* Infinite scroll magic */
@keyframes signal-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.signal-strip:hover .signal-track {
  animation-play-state: paused;
}

.signal-strip::before,
.signal-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.signal-strip::before {
  left: 0;
  background: linear-gradient(to right, #0c1219, transparent);
}

.signal-strip::after {
  right: 0;
  background: linear-gradient(to left, #0c1219, transparent);
}


/* Buttons */

.btn {
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(16, 27, 38, 0.14);
}

.btn-primary:hover {
  background: #f1ede7;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.20);
}

.btn-secondary-dark:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Hero */

.hero {
  width: 100%;
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4.2rem;
  background:
    radial-gradient(circle at top right, rgba(44, 74, 110, 0.22), transparent 30%),
    linear-gradient(180deg, #132231 0%, #0e1721 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-cloud {
  position: absolute;
  border-radius: 999px;
  filter: blur(52px);
  opacity: 0.28;
  animation: cloud-drift 18s ease-in-out infinite;
}

.hero-cloud-1 {
  width: 28rem;
  height: 12rem;
  top: 14%;
  left: 6%;
  background: rgba(255,255,255,0.30);
}

.hero-cloud-2 {
  width: 24rem;
  height: 10rem;
  top: 58%;
  right: 8%;
  background: rgba(201,126,58,0.12);
  animation-delay: -5s;
}

.hero-cloud-3 {
  width: 36rem;
  height: 14rem;
  bottom: 8%;
  left: 32%;
  background: rgba(123, 154, 186, 0.16);
  animation-delay: -9s;
}

.hero-wrap {
  width: 100%;
  min-height: calc(100vh - 94px - 4.5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1,
.hero-content p {
  color: var(--white);
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6dc17a;
}

.dynamic-line {
  display: inline-flex;
  align-items: center;
  min-height: 1.15em;
}

.dynamic-stage {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 9.4ch;
  min-height: 1.1em;
}

.word-build {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  transform-origin: center bottom;
}

.word-build.is-exiting {
  animation: word-exit 0.32s ease forwards;
}

.word-design {
  gap: 0.01em;
}

.word-design .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(-20px) rotate(var(--tilt, 0deg)) scale(0.92);
  filter: blur(7px);
}

.word-design.is-active .letter {
  animation: scribble-drop 0.58s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
  animation-delay: calc(var(--i) * 0.08s);
}

.connect-build {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  transition: gap 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.connect-build .chunk,
.connect-build .dash {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.32s ease, filter 0.32s ease, width 0.32s ease;
}

.connect-build .left {
  transform: translateX(-14px);
}

.connect-build .right {
  transform: translateX(14px);
}

.connect-build .dash {
  width: 0.72em;
  overflow: hidden;
  text-align: center;
  transform: translateY(10px) scale(0.84);
}

.connect-build.is-active .chunk,
.connect-build.is-active .dash {
  opacity: 1;
  filter: blur(0);
}

.connect-build.is-active .left,
.connect-build.is-active .right {
  transform: translateX(0);
}

.connect-build.is-active .dash {
  transform: translateY(0) scale(1);
}

.connect-build.is-joined {
  gap: 0;
}

.connect-build.is-joined .dash {
  width: 0;
  opacity: 0;
  transform: translateY(4px) scale(0.7);
}

.hosting-build {
  position: relative;
  display: inline-grid;
  place-items: center;
  padding: 0.08em 0.30em 0.16em;
}

.hosting-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
}

.hosting-box {
  position: absolute;
  inset: -0.10em -0.24em -0.12em -0.24em;
  overflow: visible;
  pointer-events: none;
}

.hosting-box rect {
  fill: none;
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 1.7;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  opacity: 0;
}

.hosting-build.is-active .hosting-word {
  animation: host-in 1.48s cubic-bezier(0.2, 0.85, 0.2, 1) forwards;
}

.hosting-build.is-active .hosting-box rect {
  animation: hosting-box-draw 1450ms linear 0.38s forwards, hosting-box-fade 1460ms ease-out 1.82s forwards;
}

.support-build {
  position: relative;
  display: inline-block;
  text-align: center;
  padding-bottom: 0.18em;
}

.support-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(-56px) scale(0.96);
  filter: blur(8px);
}

.support-catch {
  position: absolute;
  right: 10%;
  bottom: 0;
  left: 10%;
  height: 0.11em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.48), rgba(255,255,255,0.18));
  box-shadow: 0 3px 12px rgba(255,255,255,0.10);
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center center;
}

.support-build.is-active .support-word {
  animation: support-drop 0.82s cubic-bezier(0.16, 0.9, 0.28, 1.16) 0.06s forwards;
}

.support-build.is-active .support-catch {
  animation: support-catch 0.28s ease 0.38s forwards;
}

.hero-lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.16rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-tags span {
  padding: 0.58rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.hero-showcase {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
}

.hero-showcase-media {
  height: 420px;
}

.hero-showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase-card {
  padding: 1.8rem 1.8rem 2rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
}

.hero-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.hero-detail-card {
  padding: 1.35rem 1.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
}

.mini-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dark-kicker {
  color: rgba(26, 42, 58, 0.52);
}

.hero-showcase-card strong,
.hero-detail-card strong {
  display: block;
  color: var(--white);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero-showcase-card p,
.hero-detail-card p {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.text-button {
  display: inline-block;
  margin-top: 1.25rem;
  color: #f2c79e;
  font-weight: 700;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.mini-list li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.82);
}

.mini-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Sections */

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

.section-cloudy::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -10rem;
  width: 30rem;
  height: 12rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.30);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.section-cloudy::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: 8%;
  width: 26rem;
  height: 10rem;
  border-radius: 999px;
  background: rgba(184,203,220,0.18);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.feature-strip {
  padding: 3.4rem 0 0;
  background: transparent;
}

.highlight-panel {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border-radius: 28px;
  background: linear-gradient(135deg, #203246 0%, #162330 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.highlight-art {
  min-height: 320px;
  position: relative;
}

.highlight-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.highlight-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(16, 27, 38, 0.38), rgba(16, 27, 38, 0.38)),
    linear-gradient(135deg, rgba(53, 85, 118, 0.20), rgba(27, 43, 59, 0.20));
}

.highlight-copy {
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.highlight-copy h2,
.highlight-copy p {
  color: var(--white);
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--slate-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker-light {
  color: rgba(255, 255, 255, 0.64);
}

.text-link-light {
  display: inline-block;
  margin-top: 1.1rem;
  color: #f2c79e;
  font-weight: 700;
}

.section {
  padding: 5.8rem 0;
  position: relative;
}

.section-light {
  background: transparent;
}

.section-soft {
  background: linear-gradient(180deg, rgba(248,246,242,0.72) 0%, rgba(239,232,223,0.72) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-plain {
  background: rgba(245, 242, 236, 0.44);
}

.section-dark {
  background: linear-gradient(180deg, #06090d 0%, #0d1219 100%);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

.section-center {
  text-align: center;
}

.section-intro {
  max-width: 50rem;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.section-intro-dark {
  color: rgba(255, 255, 255, 0.70);
}

.dark-center {
  margin-bottom: 2.8rem;
}

.section-head {
  margin-bottom: 2.6rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.section-head > p {
  max-width: 38ch;
}

/* Mode toggle */

.mode-toggle {
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.35rem;
  display: inline-flex;
  gap: 0.2rem;
  border-radius: var(--radius-pill);
  background: rgba(26, 42, 58, 0.06);
  border: 1px solid rgba(26, 42, 58, 0.08);
}

.mode-btn {
  min-width: 136px;
  height: 42px;
  padding: 0 1rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--slate-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.mode-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* Pillars */

.pillar-grid {
  margin-top: 2.3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.pillar-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.80);
  border: 1px solid rgba(26, 42, 58, 0.08);
  box-shadow: var(--shadow-sm);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pillar-media {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.pillar-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-card h3,
.pillar-card p {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.pillar-card h3 {
  margin-top: 1rem;
}

.pillar-card p {
  margin-top: 0.65rem;
  margin-bottom: 1.3rem;
}

/* Feature split */

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.split-grid-feature {
  align-items: stretch;
}

.content-block p {
  margin-top: 0.9rem;
  max-width: 34rem;
}

.content-block-large {
  padding: 1rem 0;
  position: relative;
  z-index: 1;
}

.feature-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.feature-list li {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(26, 42, 58, 0.08);
  color: rgba(26, 42, 58, 0.82);
  box-shadow: var(--shadow-sm);
}

.feature-list li::before {
  content: "✓ ";
  color: var(--copper);
  font-weight: 700;
}

.editorial-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 42, 58, 0.08);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
}

.editorial-image {
  height: 360px;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  padding: 1.7rem;
}

.editorial-copy p {
  margin-top: 0.9rem;
}

/* Steps */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.steps-grid-wide {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 42, 58, 0.08);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step-num {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(201,126,58,0.14);
  color: var(--copper);
  font-size: 0.8rem;
  font-weight: 700;
}

.step-card p {
  margin-top: 0.7rem;
}

/* Icon pillars */

.icon-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.icon-item {
  text-align: center;
  padding: 1rem 1rem 0;
  position: relative;
  z-index: 1;
}

.icon-circle {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #30353a;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}

.icon-item p {
  max-width: 22ch;
  margin: 0.65rem auto 0;
}

/* News section */

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.news-card {
  text-align: center;
}

.news-card-left {
  text-align: left;
}

.news-thumb {
  height: 220px;
  border-radius: 18px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card p {
  color: rgba(255, 255, 255, 0.70);
  margin-top: 0.6rem;
}

/* Advisor band */

.ai-band-section {
  background: transparent;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
}

.ai-band {
  padding: 3rem 2rem;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(233, 219, 206, 0.92) 0%, rgba(227, 223, 245, 0.92) 100%);
  text-align: center;
  border: 1px solid rgba(26, 42, 58, 0.06);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.ai-badge {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #e7b58a 0%, #b9c4ff 100%);
  color: var(--white);
  font-size: 1.2rem;
}

.ai-band p {
  max-width: 52rem;
  margin: 1rem auto 0;
}

.advisor-form {
  max-width: 640px;
  height: 56px;
  margin: 1.8rem auto 0;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(26, 42, 58, 0.08);
}

.advisor-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0 1rem;
  color: var(--navy);
  outline: none;
}

.advisor-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 42, 58, 0.12);
  color: var(--navy);
  font-size: 1.1rem;
}

/* CTA */

.cta-section {
  background: transparent;
  padding-top: 0;
}

.cta-panel {
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, #22354b 0%, #162332 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-panel h2,
.cta-panel p {
  color: var(--white);
}

.cta-panel p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* Forms and small UX states */

.field-help,
.form-privacy-note {
  margin-top: -0.1rem;
  color: rgba(26, 42, 58, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-privacy-note {
  margin-top: 0.1rem;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
  color: rgba(16, 27, 38, 0.68);
}

.form-status[data-status="error"] {
  color: #a53b2a;
  font-weight: 700;
}

.form-status[data-status="success"] {
  color: #2f6f46;
  font-weight: 700;
}

.form-status[data-status="pending"] {
  color: rgba(16, 27, 38, 0.68);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: rgba(165, 59, 42, 0.48) !important;
  box-shadow: 0 0 0 4px rgba(165, 59, 42, 0.08) !important;
}

/* Footer */

.site-footer {
  background: #efede8;
  border-top: 1px solid rgba(26, 42, 58, 0.08);
  padding: 3.2rem 0 2rem;
  position: relative;
  z-index: 1;
}

.footer-icons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.footer-tool {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--navy);
  font-weight: 500;
}

.footer-tool-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2f343a;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(26, 42, 58, 0.12);
}

.footer-links-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 0.95rem;
}

.footer-links-grid a {
  display: block;
  color: rgba(26, 42, 58, 0.72);
  margin-bottom: 0.7rem;
  font-size: 0.96rem;
}

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

.footer-bottom {
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand-block strong {
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.footer-brand-block span,
.footer-meta {
  color: rgba(26, 42, 58, 0.62);
  font-size: 0.94rem;
}

/* Animations */

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

@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(16px,-12px,0) scale(1.04); }
}

@keyframes cloud-drift {
  0%,100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(12px,-10px,0) scale(1.04); }
}

@keyframes word-exit {
  to {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(8px);
  }
}

@keyframes scribble-drop {
  0% {
    opacity: 0;
    transform: translateY(-22px) rotate(var(--tilt, 0deg)) scale(0.9);
    filter: blur(7px);
  }
  58% {
    opacity: 1;
    transform: translateY(2px) rotate(calc(var(--tilt, 0deg) * -0.25)) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
    filter: blur(0);
  }
}

@keyframes host-in {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes hosting-box-draw {
  from {
    opacity: 1;
    stroke-dashoffset: 100;
  }
  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes hosting-box-fade {
  to {
    opacity: 0;
  }
}

@keyframes support-drop {
  0% {
    opacity: 0;
    transform: translateY(-56px) scale(0.96);
    filter: blur(8px);
  }
  72% {
    opacity: 1;
    transform: translateY(4px) scale(1.01);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes support-catch {
  from {
    opacity: 0;
    transform: scaleX(0.3);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive */

@media (min-width: 1400px) {
  .hero-showcase-media {
    height: 520px;
  }
}

@media (min-width: 1600px) {
  .hero-wrap {
    gap: 5rem;
  }
}

@media (min-width: 1800px) {
  .hero-showcase-media {
    height: 620px;
  }
}

@media (max-width: 1180px) {
  .hero-wrap,
  .highlight-panel,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .news-grid,
  .icon-pillars,
  .steps-grid-wide {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .container-nav {
    padding: 0 2rem;
  }

  .container-wide {
    padding: 0 2rem;
  }

  .hero {
    padding-top: 4rem;
  }
}

@media (max-width: 920px) {
  .header-inner {
    gap: 0.75rem;
  }  

  .header-left {
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-links[data-mobile-nav] {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 2rem;
    right: 2rem;
    z-index: 2100;
    padding: 0.75rem;
    border-radius: 22px;
    background: rgba(10, 14, 19, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-links[data-mobile-nav].is-open {
    display: flex;
  }

  .nav-links[data-mobile-nav] a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-links[data-mobile-nav] a:hover,
  .nav-links[data-mobile-nav] a:focus-visible,
  .nav-links[data-mobile-nav] a.active,
  .nav-links[data-mobile-nav] a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .search-bar {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-btn-primary {
    display: none;
  }

  .header-btn-ghost span:not(.status-pip) {
    display: none;
  }

  .header-btn-ghost {
    padding-inline: 0.72rem;
  }

  .user-link span:not(.user-icon) {
    display: none;
  }

  .user-link {
    padding-inline: 0.72rem;
  }

  .body-nav-open {
    overflow-x: hidden;
  }

  .footer-links-grid,
  .footer-icons,
  .hero-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dynamic-stage {
    min-width: 8.4ch;
  }
}

@media (max-width: 780px) {
  .container,
  .container-wide,
  .container-nav {
    padding: 0 1.25rem;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    font-size: 1.65rem;
  }

  .nav-links[data-mobile-nav] {
    left: 1.25rem;
    right: 1.25rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .section {
    padding: 4.3rem 0;
  }

  .hero {
    min-height: auto;
    padding: 3.8rem 0 3.4rem;
  }

  .hero-wrap {
    min-height: auto;
    gap: 2rem;
  }

  .hero-showcase-media,
  .editorial-image,
  .news-thumb,
  .pillar-media {
    height: 220px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .pillar-grid,
  .news-grid,
  .icon-pillars,
  .footer-links-grid,
  .footer-icons,
  .hero-detail-grid,
  .steps-grid,
  .steps-grid-wide {
    grid-template-columns: 1fr;
  }

  .advisor-form {
    height: auto;
    padding: 0.5rem;
    flex-direction: column;
    border-radius: 24px;
  }

  .advisor-form input,
  .advisor-form button {
    width: 100%;
  }

  .advisor-form button {
    height: 48px;
    border-radius: 16px;
  }

  .dynamic-stage {
    min-width: 7.8ch;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .signal-track {
    animation: none;
    transform: none;
  }

  .signal-strip {
    height: auto;
    padding: 0.55rem 0;
  }

  .signal-group {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    white-space: normal;
    padding: 0 1rem;
  }

  .dynamic-stage {
    min-width: auto;
  }
}