@import "tailwindcss";

:root {
  --ink: #f5f1eb;
  --muted: #9a9ca4;
  --orange: #ff8b2b;
  --orange-soft: #ffb067;
  --panel: #111216;
  --line: rgba(255, 255, 255, 0.1);
  --background: #08090b;
  --foreground: var(--ink);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--foreground);
  background: var(--background);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
}

body::selection { color: #08090b; background: var(--orange); }
a { color: inherit; text-decoration: none; }

main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #08090b;
  background-size: 72px 72px;
}

.ambient {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  opacity: 0.13;
}

.ambient-one { top: -280px; right: 4%; background: var(--orange); }
.ambient-two { top: 760px; left: -360px; background: #e45b12; }

.site-header,
.hero,
.section-shell,
footer {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  z-index: 2;
}

.site-header {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #090909;
  background: var(--orange);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 800;
  box-shadow: 0 10px 35px rgba(255, 139, 43, 0.24);
}

.brand-copy { display: grid; gap: 2px; line-height: 1; }
.brand-copy strong {
  font-family: Georgia, serif;
  font-size: 17px;
  letter-spacing: 0.08em;
}
.brand-copy small {
  color: #7f828b;
  font-size: 9px;
  letter-spacing: 0.35em;
}

nav { display: flex; gap: 32px; }
nav a {
  position: relative;
  color: #a8a9af;
  font-size: 13px;
  transition: color 180ms ease;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--orange);
  transition: right 180ms ease;
}
nav a:hover { color: var(--ink); }
nav a:hover::after { right: 0; }

.version-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #a8a9af;
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.025);
}

.version-pill i,
.card-status strong i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #59d790;
  box-shadow: 0 0 12px rgba(89, 215, 144, 0.8);
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 60px;
  padding: 88px 0 96px;
}

.eyebrow {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.hero h1,
.section-heading h2,
.security-copy h2,
.privacy h2 {
  margin: 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.hero h1 { font-size: clamp(56px, 7vw, 92px); }
.hero h1 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #aaaab1;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.primary-action,
.secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-action {
  gap: 18px;
  color: #090909;
  background: var(--orange);
  box-shadow: 0 14px 40px rgba(255, 139, 43, 0.18);
}
.primary-action span { font-size: 18px; }
.secondary-action {
  border: 1px solid var(--line);
  color: #c1c1c6;
  background: rgba(255, 255, 255, 0.025);
}
.primary-action:hover,
.secondary-action:hover { transform: translateY(-2px); }
.secondary-action:hover {
  border-color: rgba(255, 139, 43, 0.4);
  background: rgba(255, 139, 43, 0.05);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 46px;
  color: #72757e;
  font-family: Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-line span::before {
  content: "•";
  margin-right: 8px;
  color: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 139, 43, 0.14), transparent 68%);
  filter: blur(10px);
  animation: breathe 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 139, 43, 0.24);
  border-radius: 50%;
}
.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
}
.orbit-large { width: 390px; height: 390px; animation: rotate 18s linear infinite; }
.orbit-small {
  width: 275px;
  height: 275px;
  border-color: rgba(255, 255, 255, 0.1);
  animation: rotate-reverse 13s linear infinite;
}

.core {
  position: relative;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 43, 0.42);
  border-radius: 42px;
  transform: rotate(45deg);
  background: linear-gradient(145deg, #24201d, #0f1013);
  box-shadow: 0 0 80px rgba(255, 139, 43, 0.2), inset 0 0 35px rgba(255, 139, 43, 0.07);
}
.core span {
  transform: rotate(-45deg);
  font-family: Georgia, serif;
  font-size: 76px;
  font-weight: 800;
}
.core i {
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 34px;
}

.floating-card {
  position: absolute;
  width: 190px;
  display: grid;
  gap: 8px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background: rgba(18, 19, 23, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}
.card-status { top: 60px; right: -8px; animation: float 5s ease-in-out infinite; }
.card-release { left: 0; bottom: 70px; animation: float 5s 1.3s ease-in-out infinite; }
.card-label {
  color: #73767f;
  font-family: Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}
.floating-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.card-release strong {
  color: var(--orange-soft);
  font-family: Georgia, serif;
  font-size: 28px;
}
.floating-card small { color: #777983; font-size: 10px; }

.signal {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px 5px rgba(255, 139, 43, 0.35);
}
.signal-one { top: 26%; left: 13%; }
.signal-two { right: 14%; bottom: 24%; }

.section-shell { padding: 120px 0; }
.experience { border-top: 1px solid var(--line); }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  column-gap: 80px;
  align-items: end;
}
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2,
.security-copy h2,
.privacy h2 { font-size: clamp(42px, 5vw, 68px); }
.section-heading > p {
  margin: 0 0 23px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.feature-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(70px);
  opacity: 0;
  transition: opacity 220ms ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 139, 43, 0.3);
}
.feature-card:hover::before { opacity: 0.16; }
.feature-index {
  color: #666972;
  font-family: Consolas, monospace;
  font-size: 10px;
}
.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 46px 0 32px;
  border: 1px solid rgba(255, 139, 43, 0.28);
  border-radius: 14px;
  background: rgba(255, 139, 43, 0.08);
}
.feature-icon i {
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
  border-radius: 5px;
  transform: rotate(45deg);
}
.feature-card h3,
.compliance-grid h3 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: 23px;
}
.feature-card p,
.compliance-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.security { padding-top: 20px; }
.security-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 540px;
  border: 1px solid rgba(255, 139, 43, 0.2);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 40%, rgba(255, 139, 43, 0.13), transparent 32%),
    #111216;
}
.security-copy { padding: 76px; }
.security-copy h2 { max-width: 670px; }
.security-copy > p {
  max-width: 640px;
  color: #a4a5ac;
  line-height: 1.75;
}
.security-copy ul {
  display: grid;
  gap: 15px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}
.security-copy li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #c6c7cb;
  font-size: 13px;
}
.security-copy li i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange);
  transform: rotate(45deg);
}

.security-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 48px;
  border-left: 1px solid var(--line);
  text-align: center;
}
.seal-rings {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px dashed rgba(255, 139, 43, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 139, 43, 0.06);
  animation: rotate 22s linear infinite;
}
.seal-rings span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 139, 43, 0.4);
  border-radius: 32px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 58px;
  font-weight: 800;
  animation: rotate-reverse 22s linear infinite;
}
.security-seal strong {
  color: var(--orange-soft);
  font-family: Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
}
.security-seal small { color: #737680; font-size: 11px; }

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
}
.compliance-grid article {
  padding: 34px;
  border-right: 1px solid var(--line);
}
.compliance-grid article:last-child { border-right: 0; }
.compliance-grid article > span {
  display: block;
  margin-bottom: 32px;
  color: var(--orange);
  font-family: Consolas, monospace;
  font-size: 10px;
}

.privacy {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  border-top: 1px solid var(--line);
}
.privacy-copy {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.privacy-copy p {
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: #a4a5ac;
  line-height: 1.75;
}

footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 52px;
  border-top: 1px solid var(--line);
}
footer p {
  max-width: 600px;
  margin: 0;
  color: #74767f;
  font-size: 11px;
  line-height: 1.65;
}
footer > span {
  color: #666972;
  font-family: Consolas, monospace;
  font-size: 10px;
}

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes rotate-reverse { to { transform: rotate(-360deg); } }
@keyframes breathe { 50% { transform: scale(1.12); opacity: 0.72; } }
@keyframes float { 50% { transform: translateY(-10px); } }

@media (max-width: 960px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-visual { min-height: 500px; }
  .section-heading,
  .privacy { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid,
  .compliance-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 260px; }
  .feature-icon { margin: 30px 0 26px; }
  .security-panel { grid-template-columns: 1fr; }
  .security-seal { border-top: 1px solid var(--line); border-left: 0; }
  .compliance-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .compliance-grid article:last-child { border-bottom: 0; }
  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 50px 0;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section-shell,
  footer { width: min(100% - 28px, 1180px); }
  .site-header { height: 78px; }
  .version-pill { padding: 8px 10px; font-size: 9px; }
  .hero {
    min-height: auto;
    gap: 30px;
    padding: 64px 0;
  }
  .hero h1 { font-size: 49px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-visual {
    min-height: 410px;
    transform: scale(0.82);
    margin: -30px -40px;
  }
  .section-shell { padding: 82px 0; }
  .section-heading h2,
  .security-copy h2,
  .privacy h2 { font-size: 43px; }
  .security-copy { padding: 42px 26px; }
  .security-seal { padding: 48px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
