:root {
  --font-sans: "DM Sans", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --ink: #111110;
  --charcoal: #20262b;
  --muted: #6e6e6b;
  --paper: #f7f6f1;
  --surface: #e1e0da;
  --line: rgba(17, 17, 16, 0.14);
  --red: #b83f25;
  --red-dark: #782717;
  --navy: #070c3c;
  --gold: #c8a84b;
  --green: #193724;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid rgba(17, 17, 16, 0.1);
  backdrop-filter: blur(14px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-lockup img {
  width: 210px;
  height: 54px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88vh;
  padding: 132px clamp(20px, 5vw, 72px) 58px;
  overflow: hidden;
  color: #fffaf2;
  background: #050505;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.12) 38%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.72;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.navigator-cta h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(64px, 11vw, 150px);
}

.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(20px, 2.8vw, 34px);
  line-height: 1.14;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--red);
  color: #fffaf2;
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: rgba(255, 250, 242, 0.44);
  color: #fffaf2;
}

.button-secondary:hover {
  background: rgba(255, 250, 242, 0.1);
}

.studio-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fffaf2;
}

.studio-strip div {
  min-height: 164px;
  padding: 30px clamp(20px, 4vw, 48px);
  border-right: 1px solid var(--line);
}

.studio-strip div:last-child {
  border-right: 0;
}

.studio-strip span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.studio-strip p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.28;
}

.section {
  padding: clamp(62px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 320px);
  gap: 48px;
  align-items: end;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.section h2,
.navigator-cta h2 {
  font-size: clamp(44px, 7vw, 86px);
}

.section-heading-row p,
.founder-copy p,
.demo-layout p,
.navigator-cta p {
  margin: 18px 0 0;
  max-width: 820px;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.product-logo {
  justify-self: end;
  width: min(100%, 300px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.product-grid article {
  min-height: 260px;
  padding: 28px;
  background: #fffaf2;
}

.product-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-grid h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(29px, 3.2vw, 42px);
  line-height: 1;
}

.product-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.navigator-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(44px, 6vw, 74px) clamp(20px, 5vw, 72px);
  background: var(--green);
  color: #fffaf2;
}

.navigator-cta p {
  color: rgba(255, 250, 242, 0.78);
}

.founder-section {
  background: var(--surface);
}

.founder-layout,
.demo-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.founder-photo {
  margin: 0;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 17, 16, 0.18);
}

.founder-copy {
  padding-top: 8px;
  border-top: 1px solid rgba(17, 17, 16, 0.18);
}

.demo-section {
  background: #090909;
  color: #fffaf2;
}

.demo-section .section-kicker,
.demo-section h2 {
  color: #fffaf2;
}

.demo-layout p {
  color: rgba(255, 250, 242, 0.72);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.16);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-section {
  background: #fffaf2;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.contact-layout p {
  margin: 18px 0 0;
  max-width: 680px;
  color: var(--charcoal);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.contact-layout p a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.contact-layout p a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 16, 0.18);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 63, 37, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fffaf2;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: 8px;
  color: rgba(255, 250, 242, 0.72);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.5);
  background: rgba(255, 250, 242, 0.08);
}

.site-footer svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .hero {
    min-height: 82vh;
    padding-top: 94px;
  }

  .studio-strip,
  .product-grid,
  .section-heading-row,
  .navigator-cta,
  .founder-layout,
  .demo-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .studio-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-logo {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    min-height: 0;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.42) 44%);
  }

  .hero-media img {
    opacity: 0.56;
  }
}

@media (max-width: 560px) {
  .brand-lockup img {
    width: 172px;
    height: 44px;
  }

  .hero-actions,
  .button,
  .site-footer {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .site-footer {
    align-items: center;
    flex-direction: row;
  }
}
