:root {
  --bg: #061019;
  --bg-2: #071827;
  --panel: #0b1828;
  --panel-2: #0e2135;
  --line: rgba(125, 211, 252, 0.18);
  --text: #f7fbff;
  --muted: #aac0d2;
  --soft: #7190a8;
  --green: #29d17d;
  --cyan: #32c7e6;
  --blue: #4aa8ff;
  --amber: #f4bd50;
  --danger: #ff6b6b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(41, 209, 125, 0.1), transparent 28%),
    radial-gradient(circle at 94% 10%, rgba(50, 199, 230, 0.1), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #030910 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--green);
  color: #03110a;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(5, 14, 23, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(41, 209, 125, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #031019;
  font-size: 13px;
}

.brand-name {
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--green);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(50, 199, 230, 0.4);
  border-radius: 999px;
  padding: 0 18px;
  color: #dffaff;
  font-size: 14px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 24, 40, 0.85);
  color: var(--text);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-nav {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 12px 20px 18px;
  background: rgba(5, 14, 23, 0.96);
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  padding: 92px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-copy,
.terminal-visual {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
  border: 1px solid rgba(41, 209, 125, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(41, 209, 125, 0.08);
  color: #b6ffd6;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(41, 209, 125, 0.7);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.beta-grid > div > p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.hero-lede {
  max-width: 660px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #031019;
}

.button-secondary {
  border: 1px solid rgba(170, 192, 210, 0.24);
  background: rgba(14, 33, 53, 0.72);
  color: var(--text);
}

.button.full {
  width: 100%;
}

.hero-note,
.privacy-note,
.pricing-note {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.7;
}

.terminal-visual,
.feature-card,
.mock-panel,
.price-card,
.signup-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 33, 53, 0.9), rgba(8, 19, 32, 0.95));
  box-shadow: var(--shadow);
}

.terminal-visual {
  width: 100%;
  padding: 20px;
  overflow: hidden;
}

.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  color: #dffaff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 14px;
}

.terminal-top strong {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.window-dots {
  display: inline-flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.window-dots span:nth-child(2) {
  background: var(--cyan);
}

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

.terminal-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.terminal-metrics div {
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: var(--radius);
  padding: 16px 14px;
  background: rgba(8, 19, 32, 0.78);
}

.terminal-metrics span {
  display: block;
  margin-bottom: 7px;
  color: #8db0c7;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.terminal-metrics strong {
  font-size: 20px;
}

.terminal-feed {
  display: grid;
  gap: 12px;
}

.feed-row {
  display: grid;
  grid-template-columns: 62px 78px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(6, 16, 25, 0.8);
  font-size: 14px;
}

.feed-row time {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 900;
}

.feed-row b {
  color: #ffffff;
}

.feed-row span {
  color: #d4e7f6;
}

.section-heading {
  max-width: 790px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.pill-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.pill-grid span,
.audience-grid span {
  min-height: 84px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(14, 33, 53, 0.58);
  color: #e7f5ff;
  font-weight: 850;
}

.pill-grid span::before {
  content: "";
  width: 18px;
  height: 3px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  flex: 0 0 auto;
}

.feature-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 184px;
  padding: 24px;
}

.feature-card p,
.mock-panel p,
.price-card p,
.faq-list p,
.legal p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(50, 199, 230, 0.24);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.process {
  background: rgba(3, 9, 16, 0.26);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 130px;
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(14, 33, 53, 0.64);
  color: #eef8ff;
  font-weight: 850;
  line-height: 1.38;
}

.steps span {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.mock-panel {
  min-height: 190px;
  padding: 22px;
}

.mock-line,
.calendar-row,
.mock-result,
.search-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-radius: var(--radius);
  margin-top: 10px;
  padding: 12px;
  background: rgba(3, 9, 16, 0.62);
  color: #d8edf9;
  font-size: 13px;
}

.mock-line time,
.calendar-row time {
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 900;
}

.search-bar {
  color: #77a8c0;
}

.wave {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 80px;
  margin: 4px 0 16px;
}

.wave span {
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
}

.wave span:nth-child(1) {
  height: 22px;
}

.wave span:nth-child(2) {
  height: 46px;
}

.wave span:nth-child(3) {
  height: 68px;
}

.wave span:nth-child(4) {
  height: 42px;
}

.wave span:nth-child(5) {
  height: 28px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 26px;
}

.price-card.highlight {
  border-color: rgba(41, 209, 125, 0.4);
  background: linear-gradient(180deg, rgba(9, 67, 49, 0.62), rgba(8, 19, 32, 0.95));
}

.price-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.price-head span {
  border: 1px solid rgba(41, 209, 125, 0.28);
  border-radius: 999px;
  padding: 6px 10px;
  color: #b6ffd6;
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 14px 0 18px;
  color: var(--text);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding-left: 20px;
  color: #d8edf9;
  line-height: 1.35;
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  margin: 24px 0 0;
  text-align: center;
}

.beta-section {
  background: linear-gradient(180deg, rgba(8, 19, 32, 0.24), rgba(3, 9, 16, 0.36));
}

.beta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.7fr);
  gap: 56px;
  align-items: center;
}

.signup-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: #eef8ff;
  font-weight: 800;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 9, 16, 0.72);
  background-color: rgba(3, 9, 16, 0.92);
  color: var(--text);
  color-scheme: dark;
  outline: 0;
}

.signup-form input,
.signup-form select {
  min-height: 48px;
  padding: 0 14px;
}

.signup-form textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(170, 192, 210, 0.68);
}

.signup-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
  border-color: rgba(50, 199, 230, 0.72);
  box-shadow: 0 0 0 3px rgba(50, 199, 230, 0.15);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.form-status.success {
  color: #b6ffd6;
}

.form-status.error {
  color: #ffb4b4;
}

.faq-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  gap: 14px;
}

.faq-list details {
  padding: 22px;
  box-shadow: none;
}

.faq-list summary {
  cursor: pointer;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.legal {
  padding-top: 40px;
}

.legal .shell {
  max-width: 980px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding-top: 42px;
}

.legal h2 {
  font-size: 30px;
}

.policy-page {
  min-height: calc(100vh - 74px);
}

.policy-shell {
  max-width: 880px;
}

.policy-shell h1 {
  max-width: 100%;
  font-size: clamp(42px, 6vw, 72px);
}

.policy-shell h2 {
  margin-top: 34px;
  font-size: 28px;
}

.policy-shell p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.policy-shell a {
  color: #b6ffd6;
  font-weight: 800;
}

.feedback-hero {
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
}

.feedback-checklist {
  display: grid;
  max-width: 620px;
  gap: 12px;
  margin-top: 30px;
}

.feedback-checklist span {
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(14, 33, 53, 0.58);
  color: #e7f5ff;
  font-weight: 850;
}

.feedback-form {
  align-self: start;
}

.feedback-form select,
.feedback-form textarea {
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: #030910;
  background-color: #030910;
  color: var(--text);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

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

  .terminal-visual {
    order: -1;
  }

  .pill-grid,
  .steps,
  .pricing-grid,
  .feature-grid,
  .preview-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.08;
  }

  .terminal-visual {
    order: 0;
  }

  .terminal-top {
    align-items: flex-start;
    gap: 12px;
  }

  .terminal-top strong {
    max-width: 180px;
    font-size: 12px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-lede,
  .section-heading p,
  .beta-grid > div > p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .terminal-metrics,
  .feed-row,
  .pill-grid,
  .steps,
  .pricing-grid,
  .feature-grid,
  .preview-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .feed-row {
    align-items: start;
    gap: 6px;
  }

  .price-card {
    min-height: auto;
  }

  .beta-grid {
    gap: 28px;
  }

  .signup-form {
    padding: 20px;
  }
}
