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

:root {
  --ink: #0d1327;
  --muted: #596175;
  --line: rgba(58, 66, 91, 0.12);
  --pink: #ff3470;
  --purple: #7c3cff;
  --blue: #2384ff;
  --yellow: #f4a900;
}

html, body { min-height: 100%; }

body {
  min-width: 320px;
  color: var(--ink);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 59, 130, 0.11), transparent 35%),
    radial-gradient(circle at 84% 14%, rgba(124, 60, 255, 0.12), transparent 34%),
    linear-gradient(130deg, #fff9fc 0%, #ffffff 46%, #faf7ff 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.page-shell {
  width: 100%;
  min-height: 100svh;
  padding: clamp(20px, 3vh, 36px) 0;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.3;
}

.hero {
  width: min(calc(100% - 48px), 1400px);
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(380px, 0.85fr) minmax(500px, 1.15fr);
  align-items: center;
  gap: clamp(28px, 3.5vw, 64px);
}

.coming-panel {
  width: 100%;
  max-width: 440px;
  text-align: center;
}

.brand-name {
  margin-bottom: 12px;
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
  font-size: clamp(3.75rem, 4.8vw, 5.75rem);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 0.9;
  background: linear-gradient(90deg, #c81aa4 0%, #df3d93 34%, #ef6d63 68%, #f5a83e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.coming-row { margin-top: 32px; }

.coming-text {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.message {
  max-width: 360px;
  margin: 18px auto 0;
  color: #33384a;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.poc-link-wrap { margin-top: 28px; }
.poc-link-text { margin-bottom: 12px; color: var(--muted); font-size: 13px; }

.poc-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 18px;
  border: 1px solid rgba(49, 57, 82, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(27, 34, 61, 0.07);
  color: #1b2137;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.poc-link:hover { box-shadow: 0 10px 24px rgba(27, 34, 61, 0.12); transform: translateY(-2px); }
.poc-link:focus-visible { outline: 3px solid rgba(124, 60, 255, 0.45); outline-offset: 3px; }

.feature-stage {
  position: relative;
  width: min(620px, 48vw, calc(100svh - 112px));
  aspect-ratio: 1;
  margin: 0 auto;
}

.ring-outer, .ring-inner {
  position: absolute;
  left: 50%; top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ring-outer { width: 90.3%; height: 90.3%; border: 1px solid rgba(255, 68, 128, 0.1); }
.ring-inner { width: 67.7%; height: 67.7%; border: 1px dashed rgba(124, 60, 255, 0.23); }

.center-circle {
  position: absolute;
  left: 50%; top: 50%;
  width: 32.3%; aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(18, 24, 38, 0.06);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.96), rgba(255, 246, 251, 0.84));
  box-shadow: 0 34px 90px rgba(124, 60, 255, 0.13);
  z-index: 2;
}
.center-logo { width: 52%; height: 52%; object-fit: contain; }

.feature-card {
  position: absolute;
  width: 27.1%;
  aspect-ratio: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 13px;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 26px 70px rgba(20, 15, 45, 0.1);
  text-align: center;
  z-index: 3;
}
.feature-card:hover { transform: translateY(-3px); }
.feature-card h2 { margin: 10px 0 6px; font-size: 15px; font-weight: 750; line-height: 1.15; letter-spacing: -0.02em; }
.feature-card p { max-width: 130px; color: #33384a; font-size: 12px; font-weight: 500; line-height: 1.4; }
.icon-wrap { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: #ffe8f0; color: var(--pink); }
.icon-wrap svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; }
.card-line { width: 24px; height: 3px; margin-top: auto; border-radius: 999px; background: var(--pink); }

.card-top { left: 50%; top: 3.2%; transform: translateX(-50%); }
.card-top-left { left: 3.2%; top: 25.8%; }
.card-top-left .icon-wrap { background: #e8f2ff; color: var(--blue); }
.card-top-left .card-line { background: var(--blue); }
.card-top-right { right: 3.2%; top: 25.8%; }
.card-top-right .icon-wrap, .card-bottom-right .icon-wrap { background: #eee5ff; color: var(--purple); }
.card-top-right .card-line, .card-bottom-right .card-line { background: var(--purple); }
.card-bottom-left { left: 3.2%; bottom: 12.9%; }
.card-bottom-left .icon-wrap { background: #fff4d8; color: var(--yellow); }
.card-bottom-left .card-line { background: var(--yellow); }
.card-bottom-right { right: 3.2%; bottom: 12.9%; }
.card-bottom { left: 50%; bottom: 0; transform: translateX(-50%); }

@media (max-width: 1024px) {
  .page-shell { padding: 30px 0 46px; }
  .hero { width: min(calc(100% - 48px), 760px); min-height: auto; grid-template-columns: 1fr; gap: 40px; }
  .coming-panel { max-width: 520px; margin: 0 auto; }
  .feature-stage { width: min(620px, 100%); }
}

@media (max-width: 560px) {
  .page-shell { padding: 22px 0 36px; }
  .hero { width: min(calc(100% - 32px), 460px); gap: 32px; }
  .brand-name { font-size: clamp(3.1rem, 17vw, 4.6rem); }
  .tagline { font-size: 16px; }
  .message { font-size: 14px; }
  .feature-stage { height: auto; display: grid !important; grid-template-columns: 1fr 1fr; gap: 14px; }
  .ring-outer, .ring-inner, .center-circle, .center-logo { display: none; }
  .feature-card, .card-top, .card-top-left, .card-top-right, .card-bottom-left, .card-bottom-right, .card-bottom { position: static; width: auto; min-height: 174px; transform: none; }
}

@media (max-width: 390px) { .feature-stage { grid-template-columns: 1fr; } }

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