@import url("https://cdn.jsdelivr.net/npm/pretendard@1.3.9/dist/web/static/pretendard.css");

:root {
  --bg: #f5f8ff;
  --bg-soft: #ecf3ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: rgba(11, 16, 32, 0.92);
  --text: #0b1020;
  --muted: rgba(11, 16, 32, 0.66);
  --muted-strong: rgba(11, 16, 32, 0.84);
  --line: rgba(11, 16, 32, 0.08);
  --line-strong: rgba(11, 16, 32, 0.16);
  --primary: #0068ff;
  --primary-2: #00c2ff;
  --primary-dark: #003db8;
  --shadow: 0 24px 60px rgba(9, 29, 69, 0.12);
  --shadow-soft: 0 12px 34px rgba(9, 29, 69, 0.08);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100vw - 2rem));
  --font: "Pretendard", "SUIT Variable", "SUIT", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --bg: #0b1020;
  --bg-soft: #101830;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-dark: rgba(5, 10, 24, 0.92);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.72);
  --muted-strong: rgba(248, 250, 252, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.16);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 104, 255, 0.12), transparent 0 26%),
    radial-gradient(circle at 84% 10%, rgba(0, 194, 255, 0.1), transparent 0 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 48%, #eaf1fb 100%);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 14% 14%, rgba(0, 104, 255, 0.08), transparent 0 18%),
    radial-gradient(circle at 84% 12%, rgba(0, 194, 255, 0.07), transparent 0 18%),
    linear-gradient(180deg, #f9fbff 0%, #edf3fb 48%, #e7eef8 100%);
  overflow-x: hidden;
}

:root[data-theme="dark"] html,
:root[data-theme="dark"] body {
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 104, 255, 0.16), transparent 0 24%),
    radial-gradient(circle at 82% 8%, rgba(0, 194, 255, 0.12), transparent 0 22%),
    linear-gradient(180deg, #09101f 0%, #0b1020 48%, #070b16 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: -2;
  pointer-events: none;
  filter: blur(32px);
  opacity: 0.75;
}

body::before {
  width: 28rem;
  height: 28rem;
  top: -8rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(0, 104, 255, 0.16), transparent 62%);
}

body::after {
  width: 22rem;
  height: 22rem;
  right: -6rem;
  top: 18rem;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.16), transparent 60%);
}

::selection {
  background: rgba(0, 104, 255, 0.18);
  color: #08101f;
}

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

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

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

button {
  border: 0;
  background: none;
}

.site {
  position: relative;
}

.site__noise,
.site__grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.site__noise {
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site__grid {
  background-image:
    linear-gradient(rgba(11, 16, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 16, 32, 0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.66), transparent 74%);
  opacity: 0.22;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #0b1020;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--surface-strong) 88%, transparent);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(17, 29, 48, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 104, 255, 0.14);
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__text span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

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

.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
}

:root[data-theme="dark"] .nav__links {
  background: rgba(255, 255, 255, 0.05);
}

.nav__link {
  position: relative;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.95rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 650;
  letter-spacing: -0.01em;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, #0068ff 0%, #0050dd 56%, #00c2ff 100%);
  box-shadow: 0 18px 38px rgba(0, 104, 255, 0.22);
}

.button--primary:hover {
  box-shadow: 0 24px 48px rgba(0, 104, 255, 0.28);
  transform: translateY(-1px);
}

.button--ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.button--ghost:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.button__ripple {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  animation: ripple 0.66s ease-out forwards;
}

.theme-toggle {
  width: 3rem;
  padding: 0;
}

.theme-toggle svg {
  width: 1.08rem;
  height: 1.08rem;
}

.theme-toggle__moon,
.theme-toggle__sun {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

:root[data-theme="light"] .theme-toggle__moon {
  opacity: 1;
  transform: scale(1);
}

:root[data-theme="dark"] .theme-toggle__sun {
  opacity: 1;
  transform: scale(1);
}

.theme-toggle__moon,
.theme-toggle__sun {
  opacity: 0.6;
  transform: scale(0.92);
}

.hero {
  position: relative;
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
}

.hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 80%, white);
  color: var(--muted);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.eyebrow__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(0, 104, 255, 0.1);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.92;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  font-weight: 800;
}

.hero h1 .accent,
.page-hero h1 .accent {
  display: block;
  margin-top: 0.18em;
  background: linear-gradient(90deg, #0b1020 0%, #0068ff 52%, #00c2ff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientText 8s linear infinite;
}

:root[data-theme="dark"] .hero h1 .accent,
:root[data-theme="dark"] .page-hero h1 .accent {
  background: linear-gradient(90deg, #ffffff 0%, #88b7ff 35%, #00d4ff 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead,
.page-hero__lead {
  max-width: 44rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1.8rem;
  color: var(--muted);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.54rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

:root[data-theme="dark"] .proof-pill {
  background: rgba(255, 255, 255, 0.05);
}

.proof-pill::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.hero__visual {
  position: relative;
  min-height: 34rem;
}

.hero__halo {
  position: absolute;
  inset: 8% 8% 8% 10%;
  border-radius: 36px;
  background:
    radial-gradient(circle at 28% 26%, rgba(0, 194, 255, 0.2), transparent 26%),
    radial-gradient(circle at 72% 72%, rgba(0, 104, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08));
  filter: blur(10px);
  animation: haloFloat 9s ease-in-out infinite;
}

.mockup {
  position: relative;
  height: 100%;
  min-height: 34rem;
  padding: 1rem;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(240, 246, 255, 0.94));
  border: 1px solid rgba(11, 16, 32, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(22px);
}

:root[data-theme="dark"] .mockup {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, rgba(6, 13, 28, 0.82), rgba(13, 21, 40, 0.7));
  border-color: rgba(255, 255, 255, 0.12);
}

.mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(0, 194, 255, 0.14), transparent 24%),
    linear-gradient(140deg, rgba(0, 104, 255, 0.08), transparent 46%);
  pointer-events: none;
}

.mockup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

:root[data-theme="dark"] .mockup__top {
  background: rgba(255, 255, 255, 0.05);
}

.window-dots {
  display: inline-flex;
  gap: 0.45rem;
}

.window-dots span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
}

.window-dots span:nth-child(1) {
  background: #ff5f57;
}

.window-dots span:nth-child(2) {
  background: #febc2e;
}

.window-dots span:nth-child(3) {
  background: #28c840;
}

.mockup__title {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.mockup__status {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.11);
  color: #0350d5;
  font-size: 0.85rem;
}

:root[data-theme="dark"] .mockup__status {
  background: rgba(0, 194, 255, 0.12);
  color: #dffbff;
}

.mockup__layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.9rem;
}

.mockup__panel,
.mockup__card,
.mockup__metric,
.mockup__feed {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

:root[data-theme="dark"] .mockup__panel,
:root[data-theme="dark"] .mockup__card,
:root[data-theme="dark"] .mockup__metric,
:root[data-theme="dark"] .mockup__feed {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.mockup__panel {
  min-height: 18rem;
  padding: 1rem;
}

.mockup__panel--graph {
  display: grid;
  gap: 1rem;
}

.mockup__curve {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background:
    linear-gradient(180deg, rgba(0, 194, 255, 0.14), rgba(0, 194, 255, 0)),
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.2), transparent 22%);
  opacity: 0.8;
  clip-path: polygon(0 52%, 12% 46%, 23% 33%, 35% 37%, 48% 26%, 63% 33%, 76% 20%, 88% 32%, 100% 16%, 100% 100%, 0 100%);
  animation: curveMove 7s ease-in-out infinite;
}

.mockup__numbers {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.mockup__numbers div {
  display: grid;
  gap: 0.25rem;
}

.mockup__numbers strong {
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.mockup__numbers span {
  color: var(--muted);
  font-size: 0.86rem;
}

.mockup__spark {
  position: relative;
  height: 9rem;
  margin-top: auto;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(0, 104, 255, 0.12), rgba(0, 194, 255, 0.08));
  border: 1px solid var(--line);
  overflow: hidden;
}

:root[data-theme="dark"] .mockup__spark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, rgba(0, 104, 255, 0.22), rgba(0, 194, 255, 0.14));
}

.mockup__spark svg {
  width: 100%;
  height: 100%;
}

.mockup__side {
  display: grid;
  gap: 0.9rem;
}

.mockup__card {
  padding: 1rem;
  min-height: 9.4rem;
}

.mockup__card h3,
.mockup__feed h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.mockup__card p,
.mockup__feed p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mockup__tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  background: rgba(0, 104, 255, 0.12);
  color: var(--primary-dark);
  font-size: 0.8rem;
}

.mockup__avatar-row {
  display: flex;
  margin-top: 0.9rem;
}

.mockup__avatar-row span {
  width: 2rem;
  height: 2rem;
  margin-left: -0.35rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(0, 104, 255, 0.8), rgba(0, 194, 255, 0.72));
}

.mockup__avatar-row span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(0, 194, 255, 0.42));
}

.mockup__avatar-row span:nth-child(3) {
  background: linear-gradient(135deg, rgba(0, 104, 255, 0.86), rgba(255, 255, 255, 0.54));
}

.mockup__feed {
  min-height: 8.6rem;
  padding: 1rem;
}

.mockup__feed ul {
  display: grid;
  gap: 0.7rem;
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
}

.mockup__feed li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.88rem;
}

.mockup__feed li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 5px rgba(0, 194, 255, 0.08);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.section--tight {
  padding-top: clamp(2.2rem, 4vw, 3.5rem);
}

.section__head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section__kicker {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(2rem, 4.3vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section__subtitle {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 0%), rgba(0, 194, 255, 0.12), transparent 32%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card__icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0, 104, 255, 0.14), rgba(0, 194, 255, 0.1));
  border: 1px solid var(--line);
}

.card__icon svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--primary-dark);
}

:root[data-theme="dark"] .card__icon svg {
  color: #dff8ff;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(0, 104, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.feature__bullet {
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, rgba(0, 104, 255, 0.14), rgba(0, 194, 255, 0.1));
  border: 1px solid var(--line);
}

.feature__bullet svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary-dark);
}

.feature h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline__step {
  position: relative;
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.timeline__step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(0, 194, 255, 0.12), transparent 28%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.timeline__step:hover::before {
  opacity: 1;
}

.timeline__num {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1.15rem;
  background: linear-gradient(135deg, rgba(0, 104, 255, 0.14), rgba(0, 194, 255, 0.08));
  border: 1px solid var(--line);
  font-size: 1.35rem;
  font-weight: 800;
}

.timeline__copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.timeline__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline__arrow {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.timeline__arrow svg {
  width: 1.05rem;
  height: 1.05rem;
}

.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  position: relative;
  padding: 1.2rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat span {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  line-height: 1.45;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 15rem;
}

.case__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.case__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.case__head p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.case__badge {
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.case__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.faq {
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq__button span {
  font-weight: 650;
  letter-spacing: -0.02em;
}

.faq__icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 104, 255, 0.06);
  transition: transform 0.25s ease;
}

.faq__icon svg {
  width: 1rem;
  height: 1rem;
}

.faq__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.28s ease;
}

.faq__panel-inner {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq__item.is-open .faq__panel {
  max-height: 14rem;
  opacity: 1;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.contact {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
}

.contact__box,
.contact__panel {
  padding: 1.25rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.9rem;
  color: var(--muted-strong);
}

.input,
.textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

:root[data-theme="dark"] .input,
:root[data-theme="dark"] .textarea {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.input:focus,
.textarea:focus {
  border-color: rgba(0, 104, 255, 0.5);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 0 4px rgba(0, 104, 255, 0.08);
}

.textarea {
  min-height: 9rem;
  resize: vertical;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.form__status {
  min-height: 1.4rem;
  color: var(--primary-dark);
  font-size: 0.94rem;
}

.contact__map {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact__map img,
.contact__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__map-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .contact__map-card {
  background: rgba(7, 11, 22, 0.72);
}

.contact__map-card h3,
.contact__map-card p {
  margin: 0;
}

.contact__map-card p {
  margin-top: 0.35rem;
  color: var(--muted);
}

.contact__details {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact__detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

:root[data-theme="dark"] .contact__detail {
  background: rgba(255, 255, 255, 0.04);
}

.contact__detail span {
  color: var(--muted);
}

.footer {
  padding: 2.8rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 0.85fr));
}

.footer h3 {
  margin: 0 0 0.75rem;
  font-size: 0.98rem;
}

.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.7;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: rgba(11, 16, 32, 0.58);
}

:root[data-theme="dark"] .footer__bottom {
  color: rgba(248, 250, 252, 0.56);
}

.page-hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}

.page-hero__wrap {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
}

.page-hero__panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.page-hero__panel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.mini-stat {
  padding: 0.95rem;
  border-radius: 18px;
  background: rgba(0, 104, 255, 0.04);
  border: 1px solid var(--line);
}

.mini-stat strong {
  display: block;
  font-size: 1.18rem;
  letter-spacing: -0.04em;
}

.mini-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.page-section {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
}

.page-aside {
  display: grid;
  gap: 1rem;
}

.meta-list {
  display: grid;
  gap: 0.55rem;
}

.meta-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--muted);
}

.meta-list strong {
  color: var(--text);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.52rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 104, 255, 0.04);
}

.icon-pill svg {
  width: 0.95rem;
  height: 0.95rem;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 104, 255, 0.16), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(0, 194, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.98), rgba(236, 243, 255, 0.94));
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

:root[data-theme="dark"] .loader {
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 104, 255, 0.18), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(0, 194, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(7, 11, 22, 0.98), rgba(7, 11, 22, 0.94));
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.loader__orb {
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #0068ff, #00c2ff);
  box-shadow: 0 0 0 14px rgba(0, 104, 255, 0.08);
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader__text {
  color: var(--muted-strong);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(14px);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="slide"] {
  transform: translateX(-22px);
}

[data-reveal="up"] {
  transform: translateY(26px);
}

[data-reveal="blur"] {
  filter: blur(16px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.split-text {
  display: inline-block;
}

.split-text .word {
  display: inline-block;
  transform: translateY(0.95em);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
}

.split-text.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}

.split-text .word + .word {
  margin-left: 0.28em;
}

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

.tiny {
  font-size: 0.88rem;
}

.hidden {
  display: none !important;
}

@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes ripple {
  from {
    width: 0;
    height: 0;
    opacity: 0.42;
  }
  to {
    width: 18rem;
    height: 18rem;
    opacity: 0;
  }
}

@keyframes haloFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
  }
}

@keyframes curveMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

/* Meta-inspired refresh: brighter, flatter, more editorial */
html,
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 104, 255, 0.07), transparent 0 22%),
    radial-gradient(circle at 88% 12%, rgba(0, 212, 255, 0.05), transparent 0 18%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 52%, #eef4fb 100%);
}

body::before,
body::after {
  opacity: 0.42;
  filter: blur(54px);
}

.site__noise {
  opacity: 0.02;
}

.site__grid {
  opacity: 0.12;
  background-size: 120px 120px;
}

.header {
  background: color-mix(in srgb, var(--surface-strong) 82%, transparent);
}

.hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4.5rem, 8vw, 7.5rem);
}

.hero__grid {
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.hero__copy {
  padding-top: 1rem;
}

.hero h1 {
  max-width: 10ch;
}

.hero h1 .accent,
.page-hero h1 .accent {
  animation-duration: 12s;
}

.hero__lead {
  max-width: 36rem;
}

.hero__visual {
  min-height: 31rem;
  display: flex;
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 31rem;
  padding: 1.35rem;
  border-radius: 36px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.88)),
    linear-gradient(135deg, rgba(0, 104, 255, 0.05), rgba(0, 212, 255, 0.02));
  box-shadow: 0 28px 72px rgba(11, 29, 60, 0.1);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -18% -35% auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 104, 255, 0.18), transparent 64%);
  opacity: 0.85;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -14% auto auto -12%;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 66%);
}

.hero-visual__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 20%), rgba(0, 104, 255, 0.08), transparent 28%),
    radial-gradient(circle at 22% 18%, rgba(0, 212, 255, 0.09), transparent 18%);
  pointer-events: none;
}

.hero-visual__frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  height: 100%;
}

.hero-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-visual__eyebrow,
.hero-visual__status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.hero-visual__status {
  color: #0050dd;
}

.hero-visual__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.9rem;
  min-height: 21.5rem;
}

.hero-visual__tile {
  position: relative;
  display: grid;
  align-content: start;
  gap: 0.6rem;
  padding: 1.15rem;
  border-radius: 26px;
  border: 1px solid rgba(11, 16, 32, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 26px rgba(11, 29, 60, 0.06);
  overflow: hidden;
}

.hero-visual__tile--primary {
  grid-row: span 2;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.96)),
    linear-gradient(135deg, rgba(0, 104, 255, 0.04), rgba(0, 212, 255, 0.02));
}

.hero-visual__tile--accent {
  background:
    linear-gradient(180deg, rgba(240, 246, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(0, 104, 255, 0.08), rgba(0, 212, 255, 0.03));
}

.hero-visual__tile::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 104, 255, 0.1), transparent 65%);
}

.hero-visual__label {
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual__tile strong {
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.hero-visual__tile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.hero-visual__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-visual__stats div {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.hero-visual__stats strong {
  display: block;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.06em;
}

.hero-visual__stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.grid--3,
.grid--4 {
  align-items: stretch;
}

.card,
.stat,
.case,
.faq__item,
.contact__box,
.contact__panel,
.page-hero__panel,
.page-section,
.timeline__step,
.feature,
.mini-stat,
.meta-list li,
.contact__detail {
  box-shadow: 0 14px 36px rgba(11, 29, 60, 0.06);
}

.card {
  padding: 1.25rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.card h3 {
  font-size: 1.08rem;
}

.section {
  padding: clamp(3.5rem, 7vw, 5.8rem) 0;
}

.section__head {
  max-width: 52rem;
  margin-bottom: 1.75rem;
}

.section__kicker {
  color: #0050dd;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section__subtitle {
  max-width: 44rem;
}

.timeline__step {
  background: rgba(255, 255, 255, 0.84);
}

.stat {
  background: rgba(255, 255, 255, 0.84);
}

.case {
  background: rgba(255, 255, 255, 0.84);
}

.faq__item {
  background: rgba(255, 255, 255, 0.84);
}

.contact__box,
.contact__panel {
  background: rgba(255, 255, 255, 0.84);
}

.footer {
  padding-top: 3.5rem;
}

.footer__grid {
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
}

.footer__bottom {
  color: rgba(11, 16, 32, 0.54);
}

@media (max-width: 1120px) {
  .hero__grid,
  .page-hero__wrap,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero__visual {
    min-height: 31rem;
  }

  .hero-visual {
    min-height: 31rem;
  }

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

  .hero-visual__tile--primary {
    grid-row: auto;
  }

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

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

  .timeline__arrow {
    justify-self: start;
  }

  .page-hero__panel-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 1.25rem, 1200px);
  }

  .header__inner {
    min-height: 4.6rem;
  }

  .brand__text span,
  .tiny {
    font-size: 0.82rem;
  }

  .nav__actions {
    gap: 0.5rem;
  }

  .button {
    min-height: 2.8rem;
    padding-inline: 1rem;
  }

  .hero__actions,
  .form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .stats,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section__title {
    max-width: 100%;
  }

  .hero-visual,
  .contact__map {
    border-radius: 24px;
  }

  .card,
  .contact__box,
  .contact__panel,
  .stat,
  .case,
  .faq__button {
    padding-inline: 1rem;
  }

  .page-section {
    padding-top: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .loader,
  .site__noise {
    display: none;
  }
}
