:root {
  --bg: #030605;
  --panel: #090f0c;
  --panel-strong: #111815;
  --text: #f5f7f3;
  --muted: #9ca8a1;
  --line: rgba(218, 232, 224, 0.12);
  --green: #33f07e;
  --green-soft: #18b864;
  --green-dark: #081d13;
  --red: #ff5d4b;
  --steel: #77817b;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  min-height: 100%;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--bg);
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 77% 22%, rgba(51, 240, 126, 0.14), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 93, 75, 0.055), transparent 22%),
    linear-gradient(180deg, #07110d 0%, var(--bg) 100%);
  letter-spacing: 0;
}

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

button,
input {
  font: inherit;
}

.coming-soon {
  width: min(1280px, calc(100% - 56px));
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 30px;
  padding: 28px 0 calc(36px + env(safe-area-inset-bottom, 0px));
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 950;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(50, 229, 126, 0.2);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #06100b;
  background: linear-gradient(135deg, var(--green), #20d66f);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(51, 240, 126, 0.16);
}

.header-actions .secondary-link {
  color: #d4ded8;
  background: rgba(218, 232, 224, 0.045);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 560px);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(50px, 6.7vw, 76px);
  line-height: 0.98;
  font-weight: 950;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: #abb8b1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.48;
  font-weight: 600;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d4ded8;
  background: rgba(255, 255, 255, 0.03);
  font-size: 13px;
  font-weight: 750;
}

.founder-offer {
  max-width: 590px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(51, 240, 126, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 20%, rgba(51, 240, 126, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(51, 240, 126, 0.08), rgba(255, 93, 75, 0.035)),
    rgba(218, 232, 224, 0.035);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.founder-offer div {
  width: 84px;
  min-height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 15px;
  color: #031009;
  background: linear-gradient(135deg, var(--green), #24d671);
  box-shadow: 0 16px 40px rgba(51, 240, 126, 0.2);
}

.founder-offer span {
  display: block;
  font-size: 28px;
  line-height: 0.95;
  font-weight: 950;
}

.founder-offer small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.founder-offer p {
  margin: 0;
  color: #bdc8c1;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.founder-offer strong {
  color: var(--text);
  font-weight: 950;
}

.signup-form {
  max-width: 590px;
  margin-top: 28px;
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: #dce5df;
  font-size: 13px;
  font-weight: 900;
}

.signup-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.signup-row input {
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

.signup-row input:focus {
  border-color: rgba(50, 229, 126, 0.72);
  box-shadow: 0 0 0 4px rgba(50, 229, 126, 0.12);
}

.signup-row button {
  height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: #031009;
  background: var(--green);
  font-weight: 950;
  cursor: pointer;
}

.form-note {
  min-height: 18px;
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.form-note.success {
  color: var(--green);
}

.form-note.error {
  color: #ff725f;
}

.app-preview {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.app-preview::before {
  content: "";
  position: absolute;
  inset: 86px 18px 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 52% 0%, rgba(51, 240, 126, 0.13), transparent 35%),
    radial-gradient(circle at 88% 22%, rgba(255, 93, 75, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.06), rgba(218, 232, 224, 0.018)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
  transform: rotate(1.1deg);
}

.preview-shell {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 16px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(218, 232, 224, 0.075), rgba(218, 232, 224, 0.02)),
    rgba(8, 15, 12, 0.97);
  border: 1px solid rgba(218, 232, 224, 0.14);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
}

.preview-topbar {
  height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 10px;
  color: #c7d0ca;
  font-size: 12px;
  font-weight: 850;
}

.preview-topbar span,
.preview-topbar i {
  width: 48px;
  height: 9px;
  border-radius: 999px;
  background: rgba(218, 232, 224, 0.11);
}

.preview-topbar i {
  justify-self: end;
  width: 30px;
  background: linear-gradient(90deg, var(--green), var(--red));
}

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

.preview-main,
.preview-side {
  min-height: 350px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 16% 0%, rgba(51, 240, 126, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.022));
}

.preview-heading span,
.preview-side span {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-heading strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(29px, 3.2vw, 36px);
  line-height: 1;
}

.preview-heading small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.preview-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.preview-summary div {
  min-height: 78px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(218, 232, 224, 0.035);
}

.preview-summary b {
  display: block;
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.preview-summary span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.preview-exercises {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.preview-exercises div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #dbe5df;
  background: rgba(218, 232, 224, 0.026);
  font-size: 13px;
  font-weight: 800;
}

.preview-exercises b {
  color: var(--green);
}

.preview-side {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.preview-side img {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), 0 0 34px rgba(51, 240, 126, 0.18);
}

.preview-side strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
}

.preview-side p {
  margin: 18px 0 0;
  color: #b4beb8;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}

.preview-side::after {
  content: "";
  display: block;
  height: 7px;
  margin-top: 16px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--green) 0 64%, rgba(255, 255, 255, 0.08) 64% 100%);
}

.signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.signals article {
  min-height: 138px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.signals strong {
  display: block;
  font-size: 19px;
}

.signals p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.seo-links {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(51, 240, 126, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.018));
}

.seo-links h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  font-weight: 950;
}

.seo-links nav,
.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-links a,
.topic-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(51, 240, 126, 0.2);
  border-radius: 999px;
  color: #dce5df;
  background: rgba(51, 240, 126, 0.055);
  font-size: 13px;
  font-weight: 850;
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(30px, 5vw, 56px) 0;
}

.workflow-copy h2,
.logging-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.workflow-copy p:not(.eyebrow),
.logging-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #abb8b1;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 650;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.workflow-steps article {
  min-height: 188px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.02));
}

.workflow-steps span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 999px;
  color: #031009;
  background: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.workflow-steps strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.workflow-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.logging-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px) 0;
}

.logging-preview {
  padding: 18px;
  border: 1px solid rgba(218, 232, 224, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.065), rgba(218, 232, 224, 0.02)),
    rgba(8, 15, 12, 0.98);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.log-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px 18px;
}

.log-head span {
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.log-head b {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.log-table {
  display: grid;
  gap: 8px;
}

.log-row {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(218, 232, 224, 0.028);
  color: #dbe5df;
  font-size: 14px;
}

.log-row b,
.log-row em {
  font-style: normal;
  font-weight: 900;
}

.log-row em {
  color: var(--green);
}

.log-row.active {
  border-color: rgba(51, 240, 126, 0.34);
  background: rgba(51, 240, 126, 0.08);
}

.log-labels {
  min-height: 32px;
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.log-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(51, 240, 126, 0.24);
  border-radius: 16px;
  background: rgba(51, 240, 126, 0.065);
}

.log-note span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.log-note strong {
  color: #dbe5df;
  font-size: 13px;
  text-align: right;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(36px, 6vw, 68px) 0;
}

.faq-section h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 950;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.02));
}

.faq-list h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-footer a {
  color: #d4ded8;
  font-weight: 800;
}

.blog-page {
  display: block;
}

.blog-page .site-header {
  margin-bottom: clamp(56px, 8vw, 94px);
}

.blog-hero {
  max-width: 860px;
}

.blog-hero h1,
.article-header h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 950;
}

.blog-hero p,
.article-header p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #abb8b1;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  font-weight: 650;
}

.blog-hero-link,
.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 30px;
  padding: 0 16px;
  border-radius: 999px;
  color: #031009;
  background: var(--green);
  font-size: 13px;
  font-weight: 950;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(44px, 7vw, 78px);
}

.blog-card {
  min-height: 224px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.02));
}

.blog-card time,
.article-header time {
  display: block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 16px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.blog-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.legal-shell {
  max-width: 900px;
  margin: 0 auto;
}

.article-shell .back-link {
  margin-top: 0;
  margin-bottom: 38px;
  color: #d4ded8;
  background: rgba(218, 232, 224, 0.045);
  border: 1px solid var(--line);
}

.article-content {
  margin-top: 44px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.018));
}

.article-content p,
.article-content li {
  color: #c1ccc5;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 560;
}

.article-content h2 {
  margin: 40px 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.article-content h3 {
  margin: 28px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

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

.article-content blockquote {
  margin: 34px 0;
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: 16px;
  color: var(--text);
  background: rgba(51, 240, 126, 0.08);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.blog-page .site-footer {
  margin-top: clamp(52px, 8vw, 88px);
}

.seo-page {
  max-width: 1060px;
  margin: 0 auto;
}

.seo-page .back-link {
  margin-top: 0;
  margin-bottom: 42px;
  color: #d4ded8;
  background: rgba(218, 232, 224, 0.045);
  border: 1px solid var(--line);
}

.seo-page h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 74px);
}

.seo-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 6vw, 72px);
}

.seo-points article,
.seo-faq article,
.seo-cta,
.blog-topics,
.topic-grid article {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.02));
}

.seo-points article {
  min-height: 186px;
  padding: 24px;
}

.seo-points strong,
.topic-grid strong {
  display: block;
  color: var(--text);
  font-size: 20px;
  line-height: 1.15;
}

.seo-points p,
.seo-faq p,
.seo-cta p,
.topic-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.seo-faq {
  display: grid;
  gap: 12px;
  margin-top: clamp(44px, 7vw, 82px);
}

.seo-faq h2,
.seo-cta h2,
.blog-topics h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  font-weight: 950;
}

.seo-faq article {
  padding: 22px;
}

.seo-faq h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.seo-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: clamp(36px, 6vw, 70px);
  padding: clamp(24px, 5vw, 42px);
}

.seo-cta a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 14px;
  color: #031009;
  background: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.blog-topics {
  display: grid;
  gap: 22px;
  margin-top: clamp(42px, 7vw, 76px);
  padding: clamp(24px, 5vw, 44px);
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.topic-grid article {
  padding: 20px;
}

.admin-page {
  width: min(1180px, calc(100% - 56px));
}

.admin-actions button,
.admin-section-head button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #06100b;
  background: var(--green);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.admin-actions .secondary-button {
  color: #d4ded8;
  background: rgba(218, 232, 224, 0.045);
  border: 1px solid var(--line);
}

.admin-login {
  max-width: 640px;
  margin: clamp(46px, 8vw, 92px) auto 0;
}

.admin-form {
  display: grid;
  gap: 12px;
  max-width: 460px;
}

.admin-form input {
  min-width: 0;
  height: 56px;
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
}

.admin-form input:focus {
  border-color: rgba(50, 229, 126, 0.72);
  box-shadow: 0 0 0 4px rgba(50, 229, 126, 0.12);
}

.admin-form button {
  height: 56px;
  border: 0;
  border-radius: 14px;
  color: #031009;
  background: var(--green);
  font-weight: 950;
  cursor: pointer;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-dashboard-header,
.admin-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.admin-dashboard-header h1 {
  font-size: clamp(44px, 6vw, 72px);
}

.admin-dashboard-header p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.admin-stat-grid article,
.admin-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(51, 240, 126, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(218, 232, 224, 0.045), rgba(218, 232, 224, 0.02));
}

.admin-stat-grid article {
  min-height: 126px;
  padding: 22px;
}

.admin-stat-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-stat-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
}

.admin-section {
  padding: clamp(18px, 4vw, 28px);
}

.admin-section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.admin-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.admin-table th {
  color: var(--green);
  background: rgba(51, 240, 126, 0.055);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table td {
  color: #d4ded8;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 1120px) {
  .coming-soon {
    width: min(100% - 40px, 900px);
    gap: 28px;
    padding-top: 20px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .app-preview {
    min-height: 0;
    order: -1;
    width: min(100%, 660px);
    justify-self: center;
  }

  .app-preview::before {
    inset: 42px 16px 14px;
  }

  .preview-shell {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .coming-soon {
    width: min(100% - 28px, 900px);
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-main,
  .preview-side {
    min-height: 0;
    padding: 18px;
  }

  .preview-side {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
  }

  .preview-side img {
    width: 64px;
    height: 64px;
    grid-row: span 3;
  }

  .preview-side p {
    margin: 0;
    grid-column: 1 / -1;
  }

  .preview-side::after {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .preview-heading strong {
    font-size: 30px;
  }

  .preview-summary {
    grid-template-columns: repeat(3, 1fr);
  }

  h1 {
    font-size: 48px;
  }

  .signals {
    grid-template-columns: 1fr;
  }

  .workflow-section,
  .logging-section,
  .seo-links {
    grid-template-columns: 1fr;
  }

  .workflow-steps,
  .seo-points,
  .topic-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .header-actions a:not(.secondary-link) {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }

  .signup-row button {
    width: 100%;
  }

  .preview-shell {
    padding: 12px;
    border-radius: 26px;
  }

  .preview-topbar {
    height: 36px;
    font-size: 11px;
  }

  .preview-main,
  .preview-side {
    padding: 18px;
    border-radius: 20px;
  }

  .preview-summary {
    gap: 8px;
  }

  .preview-summary div {
    min-height: 70px;
    padding: 12px 10px;
  }

  .preview-summary b {
    font-size: 22px;
  }

  .preview-exercises div {
    padding: 14px;
  }

  .workflow-copy h2,
  .logging-copy h2 {
    font-size: 40px;
  }

  .workflow-steps article {
    min-height: 0;
  }

  .logging-preview {
    padding: 14px;
    border-radius: 24px;
  }

  .log-head {
    display: grid;
    gap: 6px;
  }

  .log-row {
    gap: 6px;
    padding: 0 12px;
  }

  .log-note {
    display: grid;
  }

  .log-note strong {
    text-align: left;
  }

  .founder-offer {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .founder-offer div {
    width: 78px;
    min-height: 66px;
  }

  .founder-offer span {
    font-size: 25px;
  }

  .founder-offer p {
    font-size: 13px;
  }

  .site-footer {
    display: grid;
    gap: 12px;
  }

  .blog-hero h1,
  .article-header h1 {
    font-size: 40px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
  }

  .seo-cta {
    grid-template-columns: 1fr;
  }

  .seo-cta a {
    width: 100%;
  }

  .admin-page {
    width: min(100% - 28px, 900px);
  }

  .admin-dashboard-header,
  .admin-section-head {
    display: grid;
    align-items: start;
  }

  .admin-stat-grid {
    grid-template-columns: 1fr;
  }
}
