@font-face {
  font-family: "RobotoLocal";
  src: url("./assets/fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("./assets/fonts/roboto/Roboto-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "RobotoLocal";
  src: url("./assets/fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PoppinsLocal";
  src: url("./assets/fonts/poppins/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --background: #f9f9fa;
  --foreground: #25243a;
  --muted: #66657a;
  --border: rgba(37, 36, 58, 0.12);
  --border-strong: rgba(37, 36, 58, 0.18);
  --surface: rgba(255, 255, 255, 0.72);
  --primary: #00bec7;
  --primary-strong: #0aa3b4;
  --shadow: 0 32px 80px rgba(29, 31, 54, 0.12);
  --hero-glow-a: rgba(0, 190, 199, 0.2);
  --hero-glow-b: rgba(48, 75, 201, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "RobotoLocal", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at top left, rgba(0, 190, 199, 0.08), transparent 28%),
    linear-gradient(180deg, #fcfcfd 0%, var(--background) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PoppinsLocal", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

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

.page-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 32px 64px 48px;
  isolation: isolate;
}

.background-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(to right, rgba(37, 36, 58, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 36, 58, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 82%);
}

.background-glow {
  position: absolute;
  z-index: -2;
  filter: blur(80px);
  opacity: 0.9;
}

.background-glow-a {
  top: 48px;
  left: calc(50% - 420px);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--hero-glow-a);
}

.background-glow-b {
  top: 120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 32% 68% 64% 36% / 47% 34% 66% 53%;
  background: var(--hero-glow-b);
}

.topbar,
.hero-layout,
.feature-section,
.site-footer {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: auto;
  height: 34px;
}

.logo-dark,
.logo-symbol {
  display: none;
}

.launch-badge {
  margin: 0;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  backdrop-filter: blur(18px);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 20px;
  align-items: center;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--primary-strong);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

h1 {
  margin: 0;
  max-width: 11.8ch;
  font-size: clamp(3rem, 4.7vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.intro,
.supporting {
  max-width: 62ch;
  font-size: 1.125rem;
  line-height: 1.8;
}

.intro {
  margin: 28px 0 0;
  color: rgba(37, 36, 58, 0.84);
  font-weight: 500;
}

.supporting {
  margin: 18px 0 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-chip,
.secondary-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 700;
}

.primary-chip {
  background: linear-gradient(135deg, var(--primary) 0%, #00ABB3 100%);
  color: var(--foreground);
  box-shadow: 0 18px 32px rgba(0, 190, 199, 0.18);
}

.secondary-chip {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.66);
  color: var(--foreground);
  backdrop-filter: blur(18px);
}

.preview-column {
  display: flex;
  justify-content: flex-start;
  overflow: visible;
}

.preview-stack {
  width: clamp(860px, 78vw, 1260px);
  max-width: none;
  margin-right: -1000px;
}

.preview-frame {
  padding: 0;
  border: 1px solid rgba(249, 249, 250, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 34px 88px rgba(8, 12, 26, 0.28);
}

.preview-image-shell {
  overflow: hidden;
  aspect-ratio: 2700 / 1640;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  display: inline-block;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);

  font-size: clamp(16px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.2em;

  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;

  backdrop-filter: blur(0.5px);
}

.feature-section {
  margin-top: 96px;
}

.feature-section-header {
  max-width: 840px;
}

.section-heading {
  margin: 0;
  color: var(--primary-strong);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 48px;
  margin: 32px 0 0;
}

.feature-item {
  min-width: 0;
}

.feature-term {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.feature-term span {
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-item dd {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.feature-icon {
  flex: none;
  width: 26px;
  height: 26px;
  margin-top: 2px;
  stroke: var(--primary);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-rule {
  width: min(1240px, 100%);
  height: 1px;
  margin: 88px auto 0;
  border: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border) 12%,
    var(--border-strong) 50%,
    var(--border) 88%,
    transparent 100%
  );
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 64px;
  margin-bottom: 64px;
}

.footer-column {
  min-width: 0;
}

.footer-label {
  margin: 0 0 10px;
  color: var(--primary-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.footer-copy {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 50ch;
}

.footer-link,
.footer-link-secondary,
.footer-link-button {
  color: var(--foreground);
  text-decoration: none;
}

.footer-link {
  display: inline-flex;
  margin-top: 18px;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(37, 36, 58, 0.18);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.footer-link-secondary {
  font-weight: 700;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-divider {
  width: 1px;
  height: 16px;
  background: var(--border-strong);
}

.footer-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.topbar-legal {
  margin-bottom: 64px;
}

.launch-badge-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.legal-layout {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-hero {
  max-width: 760px;
}

.legal-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-rule-legal {
  width: 100%;
  margin-top: 40px;
}

.legal-sheet {
  margin-top: 22px;
}

.legal-block + .legal-block {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.legal-block h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
}

.legal-prose p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.legal-prose h3 {
  margin: 22px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.legal-prose ol,
.legal-prose ul {
  margin: 14px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-prose li + li {
  margin-top: 10px;
}

.legal-prose a {
  color: var(--foreground);
  text-decoration-color: rgba(37, 36, 58, 0.28);
  text-underline-offset: 0.16em;
}

.legal-prose strong {
  color: var(--foreground);
}

.legal-updated {
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .preview-column {
    justify-content: flex-start;
  }

  .preview-stack {
    width: min(100%, 900px);
    margin-right: 0;
    max-width: 100%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 22px 32px 36px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 64px;
  }

  .logo {
    height: 32px;
  }

  .logo-light,
  .logo-dark {
    display: none;
  }

  .logo-symbol {
    display: block;
    height: 36px;
  }

  h1 {
    max-width: none;
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .intro,
  .supporting {
    font-size: 1rem;
    line-height: 1.7;
  }

  .primary-chip,
  .secondary-chip,
  .launch-badge {
    width: 100%;
    justify-content: center;
  }

  .feature-section {
    margin-top: 72px;
  }

  .section-rule {
    margin-top: 72px;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-divider {
    display: none;
  }

  .preview-frame {
    border-radius: 6px;
  }

  .preview-image-shell {
    border-radius: 0;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --background: #1f2031;
    --foreground: #f9f9fa;
    --muted: #b8bad0;
    --border: rgba(249, 249, 250, 0.12);
    --border-strong: rgba(249, 249, 250, 0.2);
    --surface: rgba(37, 36, 58, 0.72);
    --shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
    --hero-glow-a: rgba(0, 190, 199, 0.22);
    --hero-glow-b: rgba(79, 70, 229, 0.22);
  }

  body {
    background:
      radial-gradient(circle at top left, rgba(0, 190, 199, 0.12), transparent 28%),
      linear-gradient(180deg, #27273c 0%, #1d1e2f 100%);
  }

  .background-grid {
    background-image:
      linear-gradient(to right, rgba(249, 249, 250, 0.05) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(249, 249, 250, 0.05) 1px, transparent 1px);
  }

  .logo-light {
    display: none;
  }

  .logo-dark {
    display: block;
  }

  .launch-badge,
  .secondary-chip {
    background: rgba(37, 36, 58, 0.62);
  }

  .intro {
    color: rgba(249, 249, 250, 0.88);
  }

  .preview-frame {
    border-color: rgba(249, 249, 250, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  }

  .preview-image-light {
    display: none;
  }

  .preview-image-dark {
    display: block;
  }

  .footer-link,
  .footer-link-secondary,
  .footer-link-button,
  .launch-badge-link {
    color: var(--foreground);
  }

  .footer-link {
    border-bottom-color: rgba(249, 249, 250, 0.2);
  }

  .legal-prose a {
    text-decoration-color: rgba(249, 249, 250, 0.28);
  }
}

#stcm-wrapper {
  --fontFamily: "RobotoLocal", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --primaryColor: #00bec7;
  --backgroundColor: rgba(37, 36, 58, 0.98);
  --textColor: #f9f9fa;
  --backdropBackgroundColor: rgba(9, 12, 24, 0.42);
  --backdropBackgroundBlur: 8px;
  --iconColor: #00bec7;
  --iconBackgroundColor: rgba(37, 36, 58, 0.98);
  --boxShadow: 0 32px 80px rgba(8, 12, 26, 0.34);
}

#stcm-banner,
#stcm-modal,
#stcm-icon {
  border: 1px solid rgba(249, 249, 250, 0.12);
}

#stcm-banner,
#stcm-modal {
  background:
    linear-gradient(180deg, rgba(42, 41, 63, 0.98), rgba(30, 31, 47, 0.98));
  box-shadow: var(--boxShadow);
}

#stcm-banner {
  width: 560px;
  border-radius: 10px;
}

#stcm-banner p,
#stcm-modal p {
  color: rgba(249, 249, 250, 0.8);
}

#stcm-banner .stcm-actions {
  margin-top: 18px;
}

#stcm-banner .stcm-actions-row {
  flex-grow: 0;
  justify-content: flex-start;
  gap: 12px;
}

#stcm-banner .stcm-preferences-button,
#stcm-banner a,
#stcm-modal a,
#stcm-icon {
  color: var(--primaryColor);
}

#stcm-banner .stcm-preferences-button span:hover,
#stcm-banner a:hover,
#stcm-modal a:hover {
  color: var(--textColor);
}

#stcm-wrapper .stcm-button {
  min-width: 0;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

#stcm-banner .stcm-button,
#stcm-modal .stcm-button {
  flex: 0 0 auto;
}

#stcm-wrapper .stcm-button-secondary {
  background-color: transparent;
}

#stcm-modal {
  border-radius: 10px;
}

#stcm-modal h1 {
  font-family: "PoppinsLocal", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

#stcm-modal legend {
  font-family: "PoppinsLocal", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

#stcm-icon {
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(8, 12, 26, 0.28);
  display: none !important;
}

#stcm-modal .stcm-modal-close {
  border-radius: 8px;
}

#stcm-modal .stcm-consent-row {
  align-items: center;
}

#stcm-modal .stcm-toggle {
  width: 58px;
  height: 32px;
}

#stcm-modal .stcm-toggle-track {
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: rgba(249, 249, 250, 0.34);
}

#stcm-modal .stcm-toggle-thumb {
  top: 2px;
  left: 2px;
  width: 28px;
  height: 28px;
}

#stcm-modal .stcm-toggle-off,
#stcm-modal .stcm-toggle-on {
  display: none;
}

#stcm-modal .stcm-toggle input:checked ~ .stcm-toggle-thumb {
  left: 28px;
}

#stcm-modal .stcm-toggle input:disabled + .stcm-toggle-track {
  opacity: 1;
  cursor: default;
}

#stcm-modal footer {
  gap: 16px;
}

@media (prefers-color-scheme: dark) and (max-width: 720px) {
  .logo-dark {
    display: none;
  }

  .logo-symbol {
    display: block;
  }
}
