/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500&display=swap');
@layer properties;
.visible {
  visibility: visible;
}
.fixed {
  position: fixed;
}
.static {
  position: static;
}
.block {
  display: block;
}
.grid {
  display: grid;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.ring {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
@layer base {
  :root {
    --bg-primary: #0A0F1E;
    --bg-secondary: rgba(255,255,255,0.05);
    --text-primary: #FFFFFF;
    --text-secondary: #64748B;
    --border-color: rgba(255,255,255,0.08);
    --button-primary: #2563EB;
    --button-hover: #1d4ed8;
    --button-active: #1e40af;
    --accent: #0EA5E9;
  }
  html.light {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --border-color: #E2E8F0;
    --button-primary: #2563EB;
    --button-hover: #1d4ed8;
    --button-active: #1e40af;
    --accent: #0284C7;
  }
  html, body {
    height: 100%;
  }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    display: block;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transition: background 0.3s ease, color 0.3s ease;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(14, 165, 233, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 165, 233, 0.04) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }
  html.light body::before {
    background-image: linear-gradient(rgba(2, 132, 199, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(2, 132, 199, 0.05) 1px, transparent 1px);
  }
}
@layer components {
  .signal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
  }
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(14, 165, 233, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: expand 4s ease-out infinite;
  }
  html.light .ring {
    border-color: rgba(2, 132, 199, 0.15);
  }
  .ring:nth-child(1) {
    width: 240px;
    height: 240px;
    animation-delay: 0s;
  }
  .ring:nth-child(2) {
    width: 420px;
    height: 420px;
    animation-delay: 0.8s;
  }
  .ring:nth-child(3) {
    width: 620px;
    height: 620px;
    animation-delay: 1.6s;
  }
  .ring:nth-child(4) {
    width: 840px;
    height: 840px;
    animation-delay: 2.4s;
  }
  .stage {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    justify-content: center;
    min-height: 100vh;
  }
  .logomark {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #2563EB, #0EA5E9);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 32px rgba(14, 165, 233, 0.25);
  }
  .logomark svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .wordmark {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
  }
  .wordmark span {
    color: var(--accent);
  }
  h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    max-width: 600px;
  }
  .sub {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 400px;
    margin-bottom: 3rem;
  }
  .form-row {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
  }
  input[type='email'] {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  input[type='email']::placeholder {
    color: var(--text-secondary);
  }
  input[type='email']:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.08);
  }
  html.light input[type='email']:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
  }
  button {
    padding: 12px 20px;
    background: var(--button-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, box-shadow 0.2s;
  }
  button:hover {
    background: var(--button-hover);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.35);
  }
  button:active {
    background: var(--button-active);
  }
  .form-note {
    font-size: 0.775rem;
    color: var(--text-secondary);
    margin-top: 0.85rem;
  }
  .error-msg {
    display: none;
    font-size: 0.825rem;
    color: #f87171;
    margin-top: 0.6rem;
  }
  .success-msg {
    display: none;
    font-size: 0.9rem;
    color: var(--accent);
    margin-top: 0.5rem;
    font-weight: 500;
  }
  .debug-msg {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    color: #cbd5e1;
    font-size: 0.8rem;
    text-align: left;
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 400px;
    overflow-x: auto;
  }
  html.light .debug-msg {
    background: rgba(248, 250, 252, 0.95);
    color: #334155;
  }
  .foot {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.775rem;
    color: var(--text-secondary);
    white-space: nowrap;
    z-index: 1;
  }
  .foot a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
  }
  .foot a:hover {
    color: var(--accent);
  }
  .theme-toggle {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    transition: background 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .theme-toggle:hover {
    background: var(--bg-primary);
    border-color: var(--accent);
  }
  .theme-toggle span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
  }
}
@keyframes expand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
  }
  button {
    width: 100%;
  }
  .ring:nth-child(3), .ring:nth-child(4) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ring {
    animation: none;
    opacity: 0;
  }
}
.wrapper {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}
header a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s;
}
header a:hover {
  color: var(--accent);
}
header a span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.last-updated {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
ul {
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  color: var(--text-secondary);
}
li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
strong {
  color: var(--text-primary);
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--button-primary);
  text-decoration: underline;
}
footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
footer a {
  color: var(--text-secondary);
  transition: color 0.2s;
}
footer a:hover {
  color: var(--accent);
}
@media (max-width: 640px) {
  .wrapper {
    padding: 2rem 1.5rem;
  }
  header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
    }
  }
}
