:root {
  --ink: #050913;
  --ink-2: #0b1324;
  --ink-3: #111b31;
  --blue: #1f7aff;
  --blue-2: #58c7ff;
  --blue-3: #103db8;
  --cyan-soft: rgba(88, 199, 255, 0.18);
  --white: #ffffff;
  --paper: #f5f8fd;
  --paper-2: #eaf1fb;
  --muted: #9aa8bd;
  --muted-dark: #5d6a7d;
  --line: rgba(255, 255, 255, 0.14);
  --paper-line: #d9e3f2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  font-weight: 800;
}

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

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(5, 9, 19, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: auto;
  max-width: min(242px, 52vw);
  max-height: 50px;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--blue-2);
}

.header-budget-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(31, 122, 255, 0.28);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 78% 20%, rgba(88, 199, 255, 0.3), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(31, 122, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #03060d 0%, #08111f 54%, #102752 100%);
  overflow: hidden;
}

.hero-logo {
  width: min(520px, 90vw);
  margin-bottom: 30px;
}

.founder-ribbon,
.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.founder-ribbon {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(88, 199, 255, 0.28);
  border-radius: 999px;
  text-transform: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 1000px;
  font-size: clamp(2.55rem, 5.6vw, 5.75rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.85rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.hero-emotion {
  display: grid;
  gap: 5px;
  max-width: 680px;
  margin-top: 22px;
  padding: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-emotion span {
  color: rgba(255, 255, 255, 0.74);
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 20px 52px rgba(31, 122, 255, 0.38);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.product-showcase {
  min-width: 0;
}

.browser-frame {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.frame-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid var(--line);
}

.frame-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  min-height: 430px;
}

.dashboard-shell aside {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 18px;
  background: rgba(3, 8, 18, 0.62);
  border-right: 1px solid var(--line);
}

.dashboard-shell aside strong {
  font-size: 1.1rem;
}

.dashboard-shell aside small {
  color: var(--muted);
}

.dashboard-shell aside nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.dashboard-shell aside nav span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.dashboard-shell aside nav .active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.dashboard-main {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(18px, 3vw, 28px);
}

.dashboard-header {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.dashboard-header span,
.ui-toolbar span {
  display: block;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dashboard-header strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.dashboard-header button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.before-after div,
.mail-preview,
.minutes-card,
.survey-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.before-after small,
.mail-preview small,
.minutes-card small,
.survey-card small {
  color: var(--blue-2);
  font-weight: 850;
}

.before-after p,
.mail-preview p,
.minutes-card p,
.survey-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 16px 0 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hero-metrics dt {
  color: var(--blue-2);
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.founder-section {
  background: linear-gradient(135deg, #071020, #0e1d36);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(22px, 5vw, 60px);
  align-items: center;
  padding: clamp(26px, 5vw, 56px);
  background:
    radial-gradient(circle at 90% 15%, rgba(88, 199, 255, 0.18), transparent 26%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.founder-card p {
  color: var(--muted);
}

.vip-list,
.promise-list,
.candidate-benefits {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vip-list li,
.promise-list span,
.candidate-benefits span {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.vip-list li::before,
.promise-list span::before,
.candidate-benefits span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--blue-2);
  font-weight: 900;
}

.scarcity {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(88, 199, 255, 0.12);
  border: 1px solid rgba(88, 199, 255, 0.28);
  border-radius: 16px;
  font-weight: 800;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  border-block: 1px solid var(--paper-line);
}

.trust-section p {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
}

.trust-section strong {
  display: block;
  max-width: 900px;
  margin-top: 22px;
  color: var(--muted-dark);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.promise-list span {
  color: var(--ink);
  background: var(--white);
  border-color: var(--paper-line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.steps-grid,
.modules-layout,
.launch-plan,
.pricing-grid,
.documents-grid {
  display: grid;
  gap: 16px;
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid article,
.launch-plan div,
.documents-grid a,
.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.steps-grid span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--blue-2);
  font-weight: 900;
}

.steps-grid p,
.launch-plan p,
.documents-grid small,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.solution-section,
.pricing-section {
  color: var(--ink);
  background: var(--paper);
}

.solution-section .section-heading p,
.pricing-section .section-heading p {
  color: var(--muted-dark);
}

.solution-visual {
  display: grid;
  grid-template-columns: minmax(330px, 0.68fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.ui-example {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(145deg, #081123, #173a76);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ui-toolbar {
  display: grid;
  gap: 4px;
}

.ui-toolbar strong {
  font-size: 1.42rem;
}

.survey-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.survey-card div span {
  padding: 8px 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
}

.modules-layout {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.module-card {
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 18px;
}

.module-card.featured {
  color: var(--white);
  background: linear-gradient(145deg, #071020, #17468c);
  border-color: rgba(31, 122, 255, 0.28);
}

.module-card p {
  color: var(--muted-dark);
}

.module-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  background: var(--paper-2);
  border-radius: 16px;
  font-size: 1.35rem;
}

.launch-section,
.documents-section,
.contact-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 199, 255, 0.16), transparent 26%),
    var(--ink);
}

.launch-plan {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-plan strong {
  display: block;
  margin-bottom: 10px;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.budget-highlight {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 14px 16px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(31, 122, 255, 0.25);
  font-weight: 900;
}

.pricing-grid div {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--paper-line);
  border-radius: 20px;
}

.pricing-grid .infinite-plan {
  color: var(--white);
  background: linear-gradient(145deg, #071020, #17468c);
  border-color: rgba(31, 122, 255, 0.28);
}

.pricing-grid strong {
  font-size: 1.68rem;
}

.pricing-grid small {
  color: var(--muted-dark);
}

.pricing-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-weight: 760;
}

.pricing-grid .infinite-plan p,
.pricing-grid .infinite-plan small {
  color: rgba(255, 255, 255, 0.74);
}

.documents-grid {
  grid-template-columns: minmax(0, 560px);
}

.documents-grid a {
  display: grid;
  gap: 10px;
  min-height: 180px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.documents-grid a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.documents-grid span {
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.documents-grid strong {
  font-size: 1.35rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.contact-section p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.08rem;
}

.candidate-benefits {
  max-width: 760px;
  margin-top: 22px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(88, 199, 255, 0.16);
  outline: none;
}

.contact-card .consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-card .consent input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: 0;
  margin-top: 2px;
  padding: 0;
  cursor: pointer;
  accent-color: var(--blue);
}

.contact-card .consent a {
  color: var(--blue-2);
  text-decoration: underline;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  color: var(--blue-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-fallback {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.text-link {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px clamp(28px, 5vw, 80px);
  align-items: start;
  padding: 40px clamp(18px, 5vw, 76px) 28px;
  background: #02050b;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}

.site-footer img {
  width: auto;
  max-width: min(220px, 56vw);
  max-height: 54px;
  height: auto;
}

.site-footer p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-legal a:hover {
  color: var(--blue-2);
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.5) !important;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.legal-page .site-header {
  grid-template-columns: auto 1fr;
}

.legal-main {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 76px);
  background:
    radial-gradient(circle at 82% 12%, rgba(88, 199, 255, 0.16), transparent 26%),
    var(--ink);
}

.legal-content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.legal-content h1 {
  max-width: none;
  margin: 6px 0 22px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
}

.legal-content h2 {
  margin: 40px 0 12px;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.legal-content section + section {
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.legal-content p,
.legal-content li {
  color: rgba(255, 255, 255, 0.78);
}

.legal-content strong {
  color: var(--white);
}

.legal-content a {
  color: var(--blue-2);
  text-decoration: underline;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 6px;
}

.legal-todo {
  margin-top: 12px;
  padding: 10px 14px;
  color: #fde68a !important;
  background: rgba(253, 230, 138, 0.08);
  border-left: 3px solid #fde68a;
  border-radius: 6px;
  font-size: 0.88rem;
}

.legal-back {
  margin-top: 48px;
}

@media (max-width: 1180px) {
  .hero-section,
  .section-heading,
  .founder-card,
  .trust-section,
  .solution-visual,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .steps-grid,
  .launch-plan,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modules-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-budget-badge {
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 36px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--line);
    border-radius: 999px;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    background: #050914;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
  }

  .site-nav a {
    padding: 10px;
  }

  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dashboard-shell aside {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dashboard-shell aside nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after,
  .hero-metrics,
  .steps-grid,
  .modules-layout,
  .launch-plan,
  .pricing-grid,
  .documents-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-logo {
    margin-bottom: 24px;
  }

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

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
