:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #ffffff;
  --paper: #f8fafc;
  --soft: #edf5f2;
  --soft-strong: #dceee9;
  --navy: #0b1f3a;
  --teal: #047857;
  --teal-dark: #064e3b;
  --brand-green: #1f8f3a;
  --gold: #b98021;
  --shadow: 0 18px 48px rgba(19, 33, 43, 0.08);
}

/* Simplified 10-second landing page */
.simple-landing {
  background: #f8fafc;
}

.simple-landing::before {
  display: none;
}

.simple-nav {
  padding: 24px 0;
}

.simple-nav nav {
  align-items: center;
}

.nav-button {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav-cta {
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  padding: 10px 16px;
}

.simple-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 52px;
  align-items: center;
  padding: 72px 0 56px;
}

.simple-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 7vw, 6.2rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.simple-hero-copy .subheadline {
  max-width: 690px;
  margin: 24px 0 0;
  color: #475569;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.simple-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.simple-trust-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 8px 12px;
}

.simple-preview-card {
  border: 1px solid #dbe5ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.12);
  overflow: hidden;
}

.simple-preview-card .preview-bar {
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
  padding: 16px;
}

.simple-preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px;
}

.simple-preview-metrics article,
.simple-dispatch-list article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px;
}

.simple-preview-metrics span,
.simple-dispatch-list span,
.simple-dispatch-list small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.simple-preview-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 1.45rem;
}

.simple-dispatch-list {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.simple-dispatch-list strong {
  display: block;
  margin: 4px 0;
}

.simple-section {
  padding: 58px 0;
}

.section-heading.compact {
  max-width: 740px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-heading.compact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.simple-card-grid {
  display: grid;
  gap: 18px;
}

.simple-card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.simple-card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.simple-card-grid article,
.simple-pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  padding: 24px;
}

.simple-card-grid h3,
.simple-pricing-grid h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
}

.simple-card-grid p,
.simple-pricing-grid p {
  margin: 12px 0 0;
  color: #55657a;
}

.simple-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.simple-pricing-grid article {
  display: grid;
  gap: 16px;
}

.simple-pricing-grid article.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.1), 0 22px 54px rgba(4, 120, 87, 0.12);
}

.simple-pricing-grid .plan-label {
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-pricing-grid h3 {
  font-size: 2.45rem;
}

.simple-pricing-grid h3 span {
  color: var(--muted);
  font-size: 1rem;
}

.simple-final-cta {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 56px 0;
  border-radius: 28px;
  background: var(--navy);
  color: #fff;
  padding: 56px 24px;
  text-align: center;
}

.simple-final-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
}

.simple-final-cta .button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.simple-footer {
  border-top: 1px solid var(--line);
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.58);
  padding: 20px;
}

.demo-modal[hidden] {
  display: none;
}

.demo-panel {
  width: min(520px, 100%);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

.demo-close {
  float: right;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 8px 12px;
}

.demo-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2rem;
}

.demo-panel p {
  color: #55657a;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-weight: 800;
}

.demo-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

#demo-status {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 940px) {
  .simple-hero,
  .simple-card-grid.three,
  .simple-card-grid.four,
  .simple-pricing-grid {
    grid-template-columns: 1fr;
  }

  .simple-hero {
    gap: 28px;
    padding-top: 38px;
  }

  .simple-preview-card {
    min-width: 0;
  }

  .simple-nav {
    align-items: flex-start;
  }

  .simple-nav nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .simple-preview-metrics {
    grid-template-columns: 1fr;
  }

  .simple-landing .page {
    width: min(100% - 28px, 1180px);
  }

  .simple-hero-copy h1 {
    font-size: 3.2rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  right: max(-150px, -8vw);
  bottom: max(-170px, -10vw);
  z-index: 0;
  width: min(720px, 76vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("/brand/gosscrew-logo-icon.png") center / contain no-repeat;
  content: "";
  opacity: 0.045;
  transform: rotate(-8deg);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 950;
}

.brand-logo-icon,
.LogoIcon {
  display: block;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.LogoFull,
.LogoWhite {
  display: inline-flex;
  align-items: center;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.top-nav nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.top-nav nav a {
  min-height: 42px;
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 850;
  padding: 10px 12px;
}

.top-nav nav a:last-child {
  border: 1px solid var(--line);
  background: #ffffff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
  padding: 48px 0 58px;
}

.copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.subheadline,
.section-heading p,
.core-plan p,
.module-card p,
.roi-grid p,
.final-cta p,
.comparison-list p,
.faq-list p {
  color: var(--muted);
}

.subheadline {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 12px 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.primary,
button {
  background: var(--teal-dark);
  color: #ffffff;
}

.button.secondary,
.text-button {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal-dark);
}

.button:hover,
button:hover,
.top-nav nav a:hover {
  transform: translateY(-1px);
}

.button.primary:hover,
button:hover {
  box-shadow: 0 12px 24px rgba(11, 78, 73, 0.16);
}

.trust-list,
.feature-list,
.module-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
}

.trust-list li,
.feature-list li,
.module-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 760;
}

.trust-list li::before,
.feature-list li::before,
.module-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "✓";
}

.product-preview {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 70px rgba(19, 33, 43, 0.13);
  padding: 18px;
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.preview-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--soft-strong);
}

.preview-bar strong {
  margin-left: 6px;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.preview-metrics article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 12px;
}

.preview-metrics span,
.preview-metrics strong {
  display: block;
}

.preview-metrics span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-metrics strong {
  margin-top: 3px;
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  line-height: 1;
}

.preview-pipeline {
  display: grid;
  gap: 10px;
}

.preview-pipeline article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 11px;
}

.preview-pipeline article.active {
  border-color: rgba(15, 118, 110, 0.42);
  background: #f0faf6;
}

.preview-pipeline article > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 950;
}

.preview-pipeline strong,
.preview-pipeline small {
  display: block;
}

.preview-pipeline small {
  color: var(--muted);
  font-weight: 760;
}

.login-card {
  display: grid;
  width: 100%;
  max-width: 520px;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 28px;
  text-align: left;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.auth-tabs button {
  min-height: 44px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal-dark);
  padding-inline: 8px;
}

.auth-tabs button.active {
  background: var(--teal-dark);
  color: #ffffff;
}

.server-config {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 12px;
}

.server-config[hidden] {
  display: none;
}

.server-config small {
  color: var(--muted);
  font-weight: 760;
}

.google-auth-button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.google-auth-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #4285f4;
  font-weight: 900;
}

.oauth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.oauth-divider::before,
.oauth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.google-auth-button[hidden],
.oauth-divider[hidden] {
  display: none;
}

#auth-form {
  display: grid;
  gap: 14px;
}

.login-card h2 {
  font-size: 1.65rem;
}

.login-card h2,
.login-card p {
  margin-bottom: 0;
}

.login-card p:not(.eyebrow),
.login-card span {
  color: var(--muted);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

button:disabled:hover {
  box-shadow: none;
  transform: none;
}

.text-button {
  min-height: 44px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.terms-consent {
  display: grid;
  gap: 7px;
}

.terms-consent[hidden] {
  display: none;
}

.terms-consent label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: none;
}

.terms-consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.terms-consent small {
  color: var(--muted);
  font-weight: 760;
}

.inline-link {
  display: inline;
  min-height: 0;
  width: auto;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 950;
  padding: 0;
  text-decoration: underline;
}

.inline-link:hover {
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

.terms-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(19, 33, 43, 0.48);
  padding: 20px;
}

.terms-modal[hidden] {
  display: none;
}

.terms-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(920px, 100%);
  max-height: min(86vh, 860px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 30px 90px rgba(19, 33, 43, 0.28);
}

.terms-header,
.terms-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
}

.terms-header {
  border-bottom: 1px solid var(--line);
}

.terms-header h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
}

.terms-header h2,
.terms-header p,
.terms-footer p {
  margin-bottom: 0;
}

.terms-scroll {
  display: grid;
  gap: 18px;
  overflow-y: auto;
  padding: 22px 24px;
}

.terms-note {
  margin: 0;
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
  font-weight: 800;
  padding: 14px;
}

.terms-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 24px;
}

.terms-list li {
  padding-left: 4px;
}

.terms-list h3 {
  margin-bottom: 6px;
}

.terms-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.terms-end {
  border-radius: 8px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 950;
  padding: 14px;
  text-align: center;
}

.terms-footer {
  border-top: 1px solid var(--line);
}

.terms-footer p {
  color: var(--muted);
  font-weight: 800;
}

#login-status {
  min-height: 22px;
  font-weight: 800;
}

.section {
  padding: 72px 0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 0 44px;
}

.proof-strip article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.proof-strip span,
.proof-strip strong {
  display: block;
}

.proof-strip span {
  color: var(--teal-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
  line-height: 1;
}

.proof-strip strong {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.workflow-path-section {
  padding-top: 34px;
}

.product-video-section {
  position: relative;
  isolation: isolate;
  padding: 46px 0 64px;
}

.product-video-section::before {
  position: absolute;
  top: 26px;
  left: max(-88px, -7vw);
  z-index: -1;
  width: min(360px, 48vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("/brand/gosscrew-logo-icon.png") center / contain no-repeat;
  content: "";
  opacity: 0.035;
}

.product-video-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(460px, 1.26fr);
  align-items: center;
  gap: clamp(24px, 4vw, 44px);
}

.product-video-copy {
  display: grid;
  gap: 16px;
}

.product-video-copy h2,
.product-video-copy p {
  margin-bottom: 0;
}

.product-video-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.07rem;
}

.product-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 28px 78px rgba(19, 33, 43, 0.16);
}

.product-video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  content: "";
}

.product-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--paper);
}

.product-video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trade-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.trade-photo-grid article {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.trade-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}

.trade-photo-grid .field-crew img {
  object-position: left center;
}

.trade-photo-grid .dispatch-office img {
  object-position: center center;
}

.trade-photo-grid .customer-handoff img {
  object-position: right center;
}

.trade-photo-grid span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-size: 0.83rem;
  font-weight: 950;
  padding: 7px 10px;
}

.workflow-path-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.workflow-path-grid article {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px;
}

.workflow-path-grid span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 950;
}

.workflow-path-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 1.02rem;
}

.workflow-path-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  display: grid;
  max-width: 860px;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.06rem;
}

.core-plan,
.module-card,
.roi-grid article,
.comparison-list,
.faq-list details,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.core-plan {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  gap: 28px;
  padding: 30px;
}

.plan-label {
  width: fit-content;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--soft-strong);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.price-block {
  display: grid;
  align-content: start;
  gap: 8px;
  border-radius: 10px;
  background: var(--soft);
  padding: 22px;
}

.price-block p,
.price-block span {
  margin: 0;
  color: var(--muted);
}

.price-block strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.feature-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.module-grid,
.roi-grid,
.home-flow,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.module-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.outcomes-section {
  border-bottom: 1px solid var(--line);
}

.outcome-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 24px;
}

.outcome-grid span {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.outcome-grid h3,
.outcome-grid p {
  margin-bottom: 0;
}

.outcome-grid p {
  color: var(--muted);
}

.money-path-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-flow article {
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: 18px;
}

.home-flow span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #ffffff;
  font-weight: 950;
}

.home-flow h3,
.home-flow p {
  margin-bottom: 0;
}

.home-flow p {
  color: var(--muted);
}

.module-card p {
  margin-bottom: 0;
}

.module-card ul {
  gap: 7px;
}

.module-card li {
  font-size: 0.95rem;
}

.roi-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.roi-grid article {
  padding: 24px;
}

.account-access-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  align-items: start;
  gap: clamp(22px, 5vw, 60px);
  border-top: 1px solid var(--line);
}

.account-access-section .section-heading {
  margin-bottom: 0;
}

.roi-grid h3,
.roi-grid p {
  margin-bottom: 0;
}

.comparison-list {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.comparison-list p {
  margin: 0;
  padding: 18px 22px;
}

.comparison-list p + p {
  border-top: 1px solid var(--line);
}

.comparison-list p:last-child {
  background: var(--soft);
  color: var(--ink);
  font-weight: 820;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 54px;
  cursor: pointer;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
  padding: 16px 54px 16px 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 54px 18px 20px;
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-list p + p {
  padding-top: 0;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 72px 0;
  padding: 42px 28px;
  text-align: center;
}

.contact-section {
  padding-bottom: 20px;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel::after {
  position: absolute;
  right: -62px;
  bottom: -72px;
  width: min(280px, 52vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("/brand/gosscrew-logo-icon.png") center / contain no-repeat;
  content: "";
  opacity: 0.04;
}

.contact-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.contact-copy h2,
.contact-copy p {
  margin-bottom: 0;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

#contact-status {
  min-height: 22px;
  color: var(--teal-dark);
  font-weight: 850;
}

.final-cta h2,
.final-cta p {
  max-width: 780px;
  margin-bottom: 0;
}

.pricing-hero {
  display: grid;
  gap: 18px;
  padding: 58px 0 18px;
}

.pricing-hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.billing-toggle {
  display: inline-flex;
  width: fit-content;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  padding: 6px;
}

.billing-toggle button {
  min-height: 40px;
  background: transparent;
  color: var(--teal-dark);
  padding: 8px 14px;
}

.billing-toggle button.active {
  background: var(--teal-dark);
  color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-grid.one-plan {
  grid-template-columns: minmax(280px, 560px);
  justify-content: center;
}

.plan-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  padding: 24px;
  box-shadow: var(--shadow);
}

.plan-card.featured {
  border-color: var(--teal);
  box-shadow: 0 22px 58px rgba(11, 78, 73, 0.14);
}

.plan-card h2 {
  font-size: 2rem;
}

.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.plan-price {
  color: var(--teal-dark);
  font-size: 2.8rem;
  line-height: 1;
}

.plan-term {
  color: var(--muted);
  font-weight: 800;
}

.plan-action {
  width: 100%;
  margin-top: 8px;
}

.payment-architecture {
  border-top: 1px solid var(--line);
}

#pricing-status {
  min-height: 24px;
  color: var(--teal-dark);
  font-weight: 850;
}

.checkout-hero {
  display: grid;
  gap: 18px;
  padding: 54px 0 26px;
}

.checkout-hero h1 {
  max-width: 1040px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  padding: 22px 0 70px;
}

.checkout-summary,
.checkout-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

.checkout-summary::after {
  position: absolute;
  right: -58px;
  bottom: -72px;
  width: min(260px, 52vw);
  aspect-ratio: 1;
  pointer-events: none;
  background: url("/brand/gosscrew-logo-icon.png") center / contain no-repeat;
  content: "";
  opacity: 0.04;
}

.checkout-summary h2,
.checkout-panel h2,
.checkout-summary p,
.checkout-panel p {
  margin-bottom: 0;
}

.checkout-price {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 14px 0;
}

.checkout-price strong {
  color: var(--teal-dark);
  font-size: 3.4rem;
  line-height: 0.95;
}

.checkout-price span {
  color: var(--muted);
  font-weight: 850;
}

.checkout-plan-picker {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.checkout-plan-picker button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--teal-dark);
  padding: 8px 10px;
}

.checkout-plan-picker button.active {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: #ffffff;
}

.checkout-panel {
  display: grid;
  gap: 22px;
}

.checkout-form,
.checkout-new-account {
  display: grid;
  gap: 14px;
}

.checkout-new-account {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 750;
}

.checkout-consent input {
  width: 18px;
  height: 18px;
  min-height: 0;
  margin-top: 4px;
  flex: 0 0 auto;
}

.checkout-account-status {
  border: 1px solid var(--soft-strong);
  border-radius: 8px;
  background: var(--soft);
  color: var(--teal-dark);
  font-weight: 850;
  padding: 12px;
}

#checkout-status {
  min-height: 24px;
  color: var(--teal-dark);
  font-weight: 850;
}

.footer {
  padding: 22px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .login-card {
    max-width: 560px;
  }

  .module-grid,
  .roi-grid,
  .workflow-path-grid,
  .product-video-layout,
  .home-flow,
  .outcome-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip,
  .product-video-layout,
  .contact-panel,
  .checkout-layout,
  .account-access-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 1180px);
  }

  .top-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav nav {
    width: 100%;
    justify-content: flex-start;
  }

  .top-nav nav a {
    min-height: 46px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.75rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero,
  .section {
    padding: 42px 0;
  }

  .trust-list,
  .feature-list,
  .module-grid,
  .pricing-grid,
  .roi-grid,
  .workflow-path-grid,
  .trade-photo-grid,
  .home-flow,
  .outcome-grid,
  .proof-strip,
  .core-plan {
    grid-template-columns: 1fr;
  }

  .login-card,
  .product-preview,
  .core-plan,
  .module-card,
  .plan-card,
  .outcome-grid article,
  .roi-grid article,
  .workflow-path-grid article,
  .home-flow article {
    padding: 22px;
  }

  .preview-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-tabs {
    grid-template-columns: 1fr;
  }

  .checkout-new-account,
  .checkout-plan-picker {
    grid-template-columns: 1fr;
  }

  .button,
  button,
  input,
  textarea {
    width: 100%;
    min-height: 48px;
  }

  .inline-link {
    width: auto;
    min-height: 0;
  }

  .terms-header,
  .terms-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions {
    width: 100%;
  }

  .final-cta {
    margin: 42px 0;
    padding: 30px 20px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-list summary {
    min-height: 52px;
    padding: 15px 48px 15px 18px;
  }

  .faq-list summary::after {
    right: 18px;
  }

  .faq-list p {
    padding: 0 18px 16px;
    font-size: 0.95rem;
  }
}
