:root {
  --ink: #15191b;
  --muted: #5d6768;
  --paper: #f6f2eb;
  --white: #ffffff;
  --line: rgba(21, 25, 27, 0.14);
  --green: #214f46;
  --green-2: #113a33;
  --steel: #53636b;
  --red: #a64437;
  --brass: #b4874b;
  --charcoal: #111719;
  --shadow: 0 20px 60px rgba(17, 23, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(17, 23, 25, 0.86), rgba(17, 23, 25, 0.16));
}

.brand,
.nav-links,
.hero-actions,
.gate-row,
.contact-box {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.nav-links {
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--white);
}

button,
input,
a {
  font: inherit;
}

.primary-button,
.secondary-button,
.ghost-button {
  min-height: 44px;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid transparent;
  padding: 11px 16px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.primary-button {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(166, 68, 55, 0.23);
}

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

.ghost-button {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.56fr);
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  padding: 128px clamp(18px, 5vw, 72px) 56px;
  color: var(--white);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/amos-generated-hero-concept.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 18, 0.94) 0%, rgba(12, 18, 18, 0.78) 38%, rgba(12, 18, 18, 0.34) 72%, rgba(12, 18, 18, 0.58) 100%),
    linear-gradient(0deg, rgba(12, 18, 18, 0.92) 0%, rgba(12, 18, 18, 0) 46%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-role {
  margin: 22px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.24rem, 2.3vw, 2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

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

.hero-panel {
  align-self: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(17, 23, 25, 0.58);
  backdrop-filter: blur(14px);
}

.hero-panel p {
  margin: 0 0 14px;
  font-weight: 900;
}

.hero-panel ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.public-gate,
.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.public-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 32px;
  align-items: center;
  background: var(--green-2);
  color: var(--white);
}

.gate-copy {
  max-width: 900px;
}

.gate-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.gate-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.gate-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.gate-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.gate-row {
  gap: 10px;
}

.gate-row input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.2);
}

.gate-row input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.gate-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.draft-content[hidden],
.public-gate[hidden] {
  display: none;
}

.intro-grid,
.split-section,
.speaking-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: start;
}

.intro-grid p,
.section-heading + p {
  color: var(--muted);
  font-size: 1.15rem;
}

.intro-photo-section {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.intro-photo-img,
.intro-photo-shade {
  position: absolute;
  inset: 0;
}

.intro-photo-img {
  left: auto;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right center;
  background: var(--charcoal);
}

.intro-photo-shade {
  background:
    linear-gradient(90deg, #070909 0%, #070909 18%, rgba(7, 9, 9, 0.92) 42%, rgba(0, 0, 0, 0.28) 72%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(12, 18, 18, 0.72) 0%, rgba(12, 18, 18, 0) 44%);
}

.intro-photo-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.intro-photo-content h2 {
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.intro-photo-content p {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.intro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.intro-photo-content .intro-proof span {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(17, 23, 25, 0.58);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.intro-section {
  padding-top: clamp(64px, 7vw, 92px);
  padding-bottom: clamp(64px, 7vw, 92px);
  align-items: center;
}

.intro-lede {
  max-width: 760px;
}

.intro-lede h2 {
  font-size: clamp(3rem, 7vw, 7.4rem);
}

.intro-lede p {
  max-width: 660px;
  margin: 22px 0 0;
}

.profile-intro {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-intro img {
  width: 156px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(17, 23, 25, 0.12);
}

.profile-intro p {
  margin: 0;
}

.intro-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.intro-proof span {
  min-height: 56px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 12px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.2;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.lane-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

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

.venture-card,
.lane-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  padding: 24px;
}

.venture-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.venture-logo {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0;
}

.venture-logo img {
  display: block;
  max-width: 176px;
  max-height: 52px;
  object-fit: contain;
}

.venture-logo-dark {
  width: 180px;
  height: 54px;
  background: var(--charcoal);
  padding: 10px;
  margin-right: 0;
  margin-left: 0;
}

.venture-logo-dark img {
  max-height: 34px;
}

.logo-musictech {
  width: 236px;
  height: 56px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(21, 25, 27, 0.08);
  gap: 10px;
  padding: 8px 12px;
}

.logo-musictech img {
  width: 38px;
  height: auto;
  max-height: 42px;
}

.logo-musictech span {
  display: grid;
  gap: 1px;
  color: var(--ink);
  line-height: 1;
}

.logo-musictech strong {
  font-size: 1.08rem;
  letter-spacing: 0;
}

.logo-musictech small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo-streetwise img {
  max-width: 184px;
  max-height: 44px;
}

.logo-streetwise-reps img {
  max-width: 196px;
  max-height: 48px;
}

.logo-repcloud img {
  max-width: 218px;
  max-height: 36px;
}

.logo-mapincheck img {
  max-width: 192px;
  max-height: 38px;
}

.logo-mapincheck {
  width: 214px;
  max-width: 100%;
  height: 54px;
  margin-right: 0;
  margin-left: 0;
  border: 1px solid rgba(21, 25, 27, 0.08);
  background: rgba(255, 255, 255, 0.84);
  padding: 8px 12px;
}

.logo-brandbinder img {
  max-width: 196px;
  max-height: 38px;
}

.logo-brandbinder {
  width: 216px;
  max-width: 100%;
  height: 54px;
  margin-right: 0;
  margin-left: 0;
  border: 1px solid rgba(21, 25, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
}

.venture-logo-mark {
  width: 54px;
  height: 54px;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 900;
}

.venture-card h3 {
  margin-top: 0;
}

.venture-card p:not(.card-kicker) {
  margin: 0;
}

.venture-card p,
.lane-grid p,
.case-item p {
  color: var(--muted);
}

.venture-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.venture-card:last-child {
  min-height: 0;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
}

.venture-card:last-child .venture-logo {
  grid-row: span 2;
}

.venture-card:last-child .card-kicker,
.venture-card:last-child h3 {
  margin: 0;
}

.venture-card:last-child p:not(.card-kicker) {
  max-width: 780px;
}

.venture-card:last-child a {
  align-self: center;
  margin-top: 0;
}

.card-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.dark-band .section-heading {
  max-width: 960px;
}

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

.built-grid > div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.check-list li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brass);
  content: "";
}

.lane-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

#software-suite .lane-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#software-suite .lane-grid article {
  min-height: 0;
  padding: 22px;
}

#software-suite .lane-grid p {
  margin-bottom: 0;
}

#portfolio .lane-grid {
  grid-template-columns: repeat(6, minmax(148px, 1fr));
  gap: 10px;
}

#portfolio .lane-grid article {
  min-height: 0;
  padding: 18px;
}

#portfolio .lane-grid h3 {
  font-size: 0.94rem;
  line-height: 1.18;
}

#portfolio .lane-grid p {
  font-size: 0.88rem;
  line-height: 1.44;
}

.brand-section {
  background: #ebe4d8;
}

.brand-wall,
.topic-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-wall span,
.topic-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  padding: 9px 12px;
  font-weight: 850;
}

.passion-section {
  background: var(--charcoal);
  color: var(--white);
}

.passion-section .section-heading {
  max-width: 1040px;
}

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

.passion-grid article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
}

.passion-grid h3 {
  font-size: 1.05rem;
}

.passion-grid p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.case-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.case-item span {
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.case-item p {
  max-width: 980px;
  margin: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.proof-grid div {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  padding: 16px;
}

.proof-grid strong {
  display: block;
  color: var(--red);
  font-size: 1.25rem;
  line-height: 1.1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.case-note {
  margin-top: 4px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline strong {
  color: var(--green);
}

.timeline span {
  color: var(--muted);
}

.speaking-section {
  background: #e4ece8;
}

.contact-section {
  background: var(--green-2);
  color: var(--white);
}

.contact-section h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.contact-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 12px;
}

.contact-form select option {
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.checkbox-row input {
  width: auto;
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
  align-items: center;
}

@media (max-width: 1050px) {
  .nav-links {
    display: none;
  }

  .hero-section,
  .public-gate,
  .intro-grid,
  .split-section,
  .speaking-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 680px;
  }

  .venture-grid,
  .lane-grid,
  .passion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #software-suite .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #portfolio .lane-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .topbar {
    padding: 12px 14px;
  }

  .brand span:last-child,
  .ghost-button {
    display: none;
  }

  .hero-section {
    min-height: 100vh;
    padding: 96px 18px 32px;
  }

  .hero-media {
    background-position: center;
  }

  .intro-photo-section {
    min-height: 92vh;
  }

  .intro-photo-img {
    left: 0;
    width: 100%;
    object-fit: cover;
    object-position: 72% center;
  }

  .intro-photo-shade {
    background:
      linear-gradient(90deg, #070909 0%, rgba(7, 9, 9, 0.84) 44%, rgba(0, 0, 0, 0.38) 100%),
      linear-gradient(0deg, rgba(12, 18, 18, 0.72) 0%, rgba(12, 18, 18, 0.08) 58%);
  }

  .intro-photo-content p {
    font-size: 1rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 18, 18, 0.95), rgba(12, 18, 18, 0.66)),
      linear-gradient(0deg, rgba(12, 18, 18, 0.95) 0%, rgba(12, 18, 18, 0.1) 58%);
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(1.9rem, 11vw, 3.1rem);
  }

  .hero-role,
  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .intro-links,
  .gate-row,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .venture-grid,
  .lane-grid,
  .built-grid,
  .passion-grid {
    grid-template-columns: 1fr;
  }

  #software-suite .lane-grid {
    grid-template-columns: 1fr;
  }

  .venture-card:last-child {
    display: flex;
    align-items: stretch;
  }

  .venture-card:last-child .venture-logo {
    grid-row: auto;
  }

  #portfolio .lane-grid {
    grid-template-columns: 1fr;
  }

  .venture-card,
  .lane-grid article {
    min-height: 0;
  }

  .case-item,
  .timeline li {
    grid-template-columns: 1fr;
  }

  .profile-intro {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 0;
  }

  .profile-intro img {
    width: 92px;
  }

  .intro-proof {
    grid-template-columns: 1fr;
  }

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