:root {
  --ink: #121317;
  --muted: #5c6470;
  --soft: #f5f2eb;
  --paper: #fffaf2;
  --line: rgba(18, 19, 23, 0.12);
  --charcoal: #1f2726;
  --teal: #0f7b7d;
  --teal-dark: #09575a;
  --amber: #f2a93b;
  --coral: #e8684a;
  --green: #68a357;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(14, 30, 33, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: rgba(242, 169, 59, 0.35);
}

img,
svg {
  display: block;
}

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

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

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

.site-header {
  position: fixed;
  inset: 16px 0 auto 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(18, 19, 23, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.brand,
.header-action,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  min-width: max-content;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.brand-mark svg,
.header-action svg,
.button svg,
.icon-button svg,
.icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-links {
  gap: 6px;
  padding: 4px;
}

.nav-links a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.header-action {
  gap: 8px;
  min-width: max-content;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
  font-weight: 800;
}

.header-action svg {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 13, 16, 0.88) 0%, rgba(8, 13, 16, 0.56) 42%, rgba(8, 13, 16, 0.16) 75%),
    linear-gradient(180deg, rgba(8, 13, 16, 0.2) 0%, rgba(8, 13, 16, 0.08) 45%, rgba(8, 13, 16, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 132px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-section .eyebrow {
  color: #9be2dd;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7.2vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 0 0 10px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions,
.form-button,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 16px 42px rgba(242, 169, 59, 0.24);
}

.button span {
  min-width: 0;
}

.button-primary:hover {
  background: #ffc463;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.signal-band {
  background: var(--charcoal);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-inline: 1px solid rgba(255, 255, 255, 0.12);
}

.signal-grid article {
  min-height: 210px;
  padding: 30px;
  background: #222b29;
}

.signal-grid span,
.roadmap span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
}

.signal-grid span {
  margin-bottom: 28px;
  color: #153133;
  background: #9be2dd;
}

.signal-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.signal-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
  gap: 70px;
  align-items: start;
}

.stacked-copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.stacked-copy p:last-child {
  margin-bottom: 0;
}

.system-section,
.blueprint-section,
.offers-section {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-subcopy {
  max-width: 680px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.tight-heading {
  margin-bottom: 24px;
}

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

.process-card,
.offer-card,
.brief-list article,
.proof-grid article,
.role-grid article,
.roadmap article,
.blueprint-form,
.blueprint-output {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.76);
}

.process-card {
  min-height: 288px;
  padding: 24px;
}

.process-card p,
.offer-card p,
.offer-card li,
.brief-list p,
.proof-grid p,
.role-grid p,
.roadmap p,
.blueprint-output p,
.blueprint-output li {
  color: var(--muted);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 54px;
  color: var(--teal-dark);
  background: rgba(15, 123, 125, 0.12);
  border-radius: var(--radius);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 560px;
  padding: 24px;
  background: var(--white);
}

.featured-offer {
  border-color: rgba(242, 169, 59, 0.72);
  box-shadow: var(--shadow);
}

.offer-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price-line {
  font-size: 1.2rem;
}

.offer-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.offer-card p,
.offer-card ul {
  margin-bottom: 0;
}

.offer-card ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.fit-grid {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.fit-grid p {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--teal-dark);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sample-strip {
  background: var(--paper);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.sample-layout p:not(.eyebrow),
.sample-preview-card p {
  color: var(--muted);
  font-size: 1.05rem;
}

.sample-preview-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.88)),
    radial-gradient(circle at top right, rgba(15, 123, 125, 0.14), transparent 38%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sample-preview-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 1.28rem;
  line-height: 1.2;
}

.sample-preview-card p {
  margin-bottom: 18px;
}

.blueprint-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.blueprint-form,
.blueprint-output {
  padding: 24px;
  box-shadow: var(--shadow);
}

.blueprint-form {
  display: grid;
  gap: 16px;
  background: var(--white);
}

.form-note,
.owner-email {
  padding: 12px;
  background: #fbf7ef;
  border: 1px solid rgba(18, 19, 23, 0.12);
  border-radius: 6px;
}

.form-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
}

.form-note p,
.owner-email {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.owner-email span {
  color: var(--ink);
  font-weight: 800;
}

label {
  display: grid;
  gap: 8px;
}

label span {
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #fbf7ef;
  border: 1px solid rgba(18, 19, 23, 0.16);
  border-radius: 6px;
  outline: none;
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  resize: vertical;
  min-height: 138px;
  padding: 12px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 123, 125, 0.14);
}

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

.form-button {
  width: 100%;
  margin-top: 4px;
}

.blueprint-output {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.9)),
    radial-gradient(circle at top right, rgba(232, 104, 74, 0.2), transparent 36%);
}

.output-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.status-pill {
  color: var(--teal-dark);
  background: rgba(15, 123, 125, 0.12);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.icon-button:hover {
  border-color: var(--teal);
}

#blueprintResult {
  display: grid;
  gap: 18px;
}

#blueprintResult h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 3vw, 2rem);
}

#blueprintResult p,
#blueprintResult ul {
  margin-bottom: 0;
}

#blueprintResult ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

#blueprintResult .plan-block {
  padding: 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 6px;
}

#blueprintResult .plan-block strong {
  display: block;
  margin-bottom: 6px;
}

.investor-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.investor-copy {
  position: sticky;
  top: 112px;
}

.investor-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.brief-list article {
  padding: 22px;
  background: var(--white);
}

.brief-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.brief-list p {
  margin-bottom: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

.proof-copy {
  position: sticky;
  top: 112px;
}

.proof-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.proof-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
}

.proof-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.proof-grid p {
  margin-bottom: 0;
}

.proof-grid .sample-wide {
  grid-column: 1 / -1;
  min-height: auto;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 242, 0.88)),
    radial-gradient(circle at top right, rgba(15, 123, 125, 0.14), transparent 38%);
}

.sample-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 4px 9px;
  color: #281b10;
  background: var(--amber);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.roadmap-section {
  color: var(--white);
  background: #25211d;
}

.roadmap-section .eyebrow {
  color: #ffc463;
}

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

.roadmap article {
  min-height: 262px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.roadmap span {
  margin-bottom: 44px;
  color: #281b10;
  background: var(--amber);
}

.roadmap p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.team-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1fr);
  gap: 48px;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: start;
}

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

.trust-grid article {
  min-height: 210px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.role-grid article {
  padding: 22px;
  background: var(--white);
}

.role-grid p {
  margin-bottom: 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 78, 80, 0.98), rgba(37, 33, 29, 0.98)),
    url("assets/hero-real-workshop.jpg") center / cover;
}

.cta-content {
  padding: 96px 0;
}

.cta-content h2 {
  max-width: 820px;
}

.cta-content p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
}

.cta-content .button {
  width: fit-content;
  margin-top: 24px;
}

.site-footer {
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #151817;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.92rem;
}

.footer-content span:first-child {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    inset: 10px 0 auto 0;
    width: min(var(--max), calc(100% - 20px));
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-media {
    object-position: 58% center;
  }

  .signal-grid,
  .two-column,
  .offer-grid,
  .sample-layout,
  .process-grid,
  .blueprint-layout,
  .investor-grid,
  .proof-section,
  .roadmap,
  .trust-section,
  .team-section {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    min-height: auto;
  }

  .process-grid,
  .roadmap,
  .role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .investor-copy {
    position: static;
  }

  .proof-copy {
    position: static;
  }
}

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

  .site-header {
    padding: 8px;
  }

  .brand span:last-child {
    max-width: 146px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action span {
    display: none;
  }

  .header-action {
    width: 38px;
    height: 38px;
    justify-content: center;
    padding: 0;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-content {
    padding: 84px 0 26px;
  }

  .hero-copy {
    max-width: 34ch;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    font-size: 1rem;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    gap: 6px;
    margin-bottom: 10px;
  }

  .hero-badges span {
    justify-content: center;
    text-align: center;
    min-width: 0;
    min-height: 34px;
    padding: 4px 8px;
    overflow-wrap: anywhere;
    font-size: 0.72rem;
    line-height: 1.12;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.16rem, 11vw, 3.05rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cta-content .button {
    width: 100%;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    width: 100%;
    min-height: 46px;
    padding: 11px 10px;
    font-size: 0.9rem;
  }

  .section {
    padding: 68px 0;
  }

  .signal-grid,
  .offer-grid,
  .process-grid,
  .roadmap,
  .role-grid,
  .proof-grid,
  .trust-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .offer-card,
  .trust-grid article,
  .roadmap article {
    min-height: auto;
  }

  .icon-box,
  .roadmap span {
    margin-bottom: 26px;
  }

  .blueprint-form,
  .blueprint-output {
    padding: 18px;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
