:root {
  --orange: #ff6b00;
  --yellow: #ffe400;
  --teal: #00c2a8;
  --black: #111111;
  --white: #ffffff;
  --paper: #fff7e8;
  --shadow: 12px 12px 0 var(--black);
  --radius: 8px;
  --max: 1312px;
  --gutter: clamp(20px, 4vw, 64px);
  font-family: Nohemi, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--orange);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--orange);
  color: var(--black);
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

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

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: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 24px var(--gutter);
  background: color-mix(in srgb, var(--orange) 94%, var(--white));
  border-bottom: 4px solid transparent;
  transition: border-color 180ms ease, min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  min-height: 82px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom-color: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cabinet Grotesk", Nohemi, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: var(--radius);
  background: var(--black);
}

.brand-mark span {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--yellow);
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 4px;
  height: 14px;
  border-radius: 999px;
  background: var(--black);
}

.brand-mark span::before {
  left: 6px;
}

.brand-mark span::after {
  right: 6px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 16px;
  font-weight: 800;
}

.site-nav a,
.link-action,
.site-footer nav a {
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.site-nav a:hover,
.link-action:hover,
.site-footer nav a:hover {
  text-decoration-line: underline;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 900;
}

.nav-toggle {
  display: none;
}

.button,
.price-card button,
.board-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--black);
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.price-card button:hover,
.board-actions button:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--black);
}

.button-small {
  min-height: 48px;
  padding-inline: 18px;
  box-shadow: none;
}

.button-dark,
.price-card button {
  background: var(--black);
  color: var(--white);
}

.button-light,
.board-actions button {
  background: var(--white);
  color: var(--black);
}

.section-pad {
  padding: clamp(76px, 9vw, 128px) var(--gutter);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  max-width: calc(var(--max) + var(--gutter) * 2);
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  padding-top: clamp(64px, 7vw, 108px);
}

.eyebrow {
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: "Cabinet Grotesk", Nohemi, Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(64px, 8.2vw, 118px);
}

h2 {
  font-size: clamp(48px, 6vw, 92px);
}

h3 {
  font-size: 28px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-text,
.split-band > p,
.how-copy p,
.pricing-copy p,
.final-cta p {
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 750;
  line-height: 1.34;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 68px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 590px;
  margin: 0;
}

.stats div {
  min-height: 104px;
  padding: 12px 20px;
  border-left: 4px solid var(--black);
}

.stats dt {
  margin-bottom: 12px;
  font-family: "Cabinet Grotesk", Nohemi, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.stats dd {
  margin: 0;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.22;
}

.hero-visual {
  position: relative;
  min-height: 660px;
}

.tilt-card {
  position: absolute;
  border-radius: var(--radius);
}

.yellow-card {
  inset: 0 0 auto auto;
  width: min(86%, 470px);
  height: 78%;
  background: var(--yellow);
  transform: rotate(7deg);
}

.teal-card {
  top: 18%;
  left: -4%;
  width: 46%;
  height: 21%;
  background: var(--teal);
  transform: rotate(-8deg);
}

.transcript-card {
  position: absolute;
  top: 16%;
  right: 5%;
  width: min(78%, 432px);
  overflow: hidden;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 16px 16px 0 var(--black);
}

.window-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-bottom: 4px solid var(--black);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.transcript-card img {
  width: 100%;
  aspect-ratio: 432 / 390;
  object-fit: cover;
}

.transcript-card blockquote {
  margin: 0;
  padding: 24px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.15;
}

.summary-note {
  position: absolute;
  right: 1%;
  bottom: 7%;
  width: min(56%, 320px);
  padding: 22px 24px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 12px 12px 0 var(--black);
  transform: rotate(-4deg);
}

.summary-note span,
.board-head span,
.badge {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-note strong {
  font-size: 24px;
  line-height: 1.22;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  border-top: 4px solid var(--black);
}

.split-band h2 {
  margin-bottom: 0;
}

.split-band > p {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  padding-top: 32px;
}

.feature-card,
.price-card,
.quote-board {
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 300px;
  padding: 28px 26px;
}

.feature-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 72px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--yellow);
}

.feature-icon.search {
  background:
    radial-gradient(circle at 45% 42%, transparent 0 12px, var(--black) 13px 16px, transparent 17px),
    linear-gradient(45deg, transparent 57%, var(--black) 58% 65%, transparent 66%),
    var(--teal);
}

.feature-icon.record {
  background:
    radial-gradient(circle, var(--black) 0 10px, transparent 11px),
    var(--yellow);
}

.feature-icon.recap {
  background:
    linear-gradient(var(--black), var(--black)) 13px 15px / 28px 4px no-repeat,
    linear-gradient(var(--black), var(--black)) 13px 25px / 20px 4px no-repeat,
    linear-gradient(var(--black), var(--black)) 13px 35px / 25px 4px no-repeat,
    var(--yellow);
}

.feature-icon.lock {
  background:
    linear-gradient(var(--black), var(--black)) 14px 25px / 26px 20px no-repeat,
    radial-gradient(circle at 50% 28%, transparent 0 11px, var(--black) 12px 15px, transparent 16px),
    var(--teal);
}

.feature-card h3 {
  margin-bottom: 18px;
}

.feature-card p,
.steps p,
.use-grid p,
.quote-board p,
.price-card p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.42;
}

.how {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 9vw, 140px);
  align-items: start;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.how-copy {
  position: sticky;
  top: 126px;
}

.steps {
  display: grid;
  gap: 28px;
}

.steps article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  align-items: start;
  min-height: 148px;
  padding-bottom: 28px;
  border-bottom: 4px solid var(--black);
}

.steps span {
  font-family: "Cabinet Grotesk", Nohemi, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 0.9;
}

.use-cases {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr);
  gap: clamp(40px, 7vw, 92px);
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.use-grid article {
  min-height: 160px;
  padding-top: 26px;
  border-top: 4px solid var(--black);
}

.quote-board {
  align-self: start;
  padding: 28px;
  background: var(--paper);
}

.board-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 4px solid var(--black);
}

.board-head strong {
  font-size: 28px;
  line-height: 1.1;
}

.quote-board ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-board li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 4px solid var(--black);
}

.quote-board time {
  font-size: 13px;
  font-weight: 900;
}

.board-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
}

.board-actions button {
  min-height: 48px;
  padding-inline: 20px;
  box-shadow: none;
}

.pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
}

.pricing-copy {
  position: sticky;
  top: 126px;
}

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

.price-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  transition: transform 180ms ease, background 180ms ease;
}

.price-card.is-selected {
  background: var(--yellow);
  transform: translateY(-18px);
}

.price-card h3 {
  margin-bottom: 18px;
}

.price {
  margin-bottom: 8px;
  font-family: "Cabinet Grotesk", Nohemi, Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 66px;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  min-height: 24px;
  margin-bottom: 46px;
  font-weight: 900;
}

.price-card button {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  min-height: 52px;
  box-shadow: none;
}

.badge {
  position: absolute;
  top: -18px;
  right: 20px;
  margin: 0;
  padding: 9px 14px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--teal);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.55fr) auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: calc(var(--max) + var(--gutter) * 2);
  margin: 0 auto;
  border-top: 4px solid var(--black);
}

.final-cta h2 {
  margin-bottom: 24px;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.signup-form > div {
  display: flex;
  gap: 14px;
}

.signup-form input {
  width: min(100%, 320px);
  min-height: 58px;
  padding: 0 18px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.signup-form .button {
  box-shadow: none;
  white-space: nowrap;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 56px var(--gutter) 64px;
  border-top: 4px solid var(--black);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 15px;
  font-weight: 900;
}

.demo-dialog {
  width: min(620px, calc(100vw - 32px));
  padding: 0;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 16px 16px 0 var(--black);
  color: var(--black);
}

.demo-dialog::backdrop {
  background: rgb(17 17 17 / 0.45);
}

.dialog-shell {
  position: relative;
  padding: 36px;
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--yellow);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.dialog-shell h2 {
  max-width: 480px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 64px);
}

.dialog-shell p:not(.eyebrow) {
  font-size: 19px;
  font-weight: 750;
  line-height: 1.45;
}

.demo-timeline {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.demo-timeline span {
  display: block;
  height: 18px;
  border: 4px solid var(--black);
  border-radius: 999px;
  background: var(--teal);
}

.demo-timeline span:nth-child(2) {
  width: 78%;
  background: var(--yellow);
}

.demo-timeline span:nth-child(3) {
  width: 58%;
  background: var(--orange);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: min(360px, calc(100vw - 48px));
  padding: 18px 20px;
  border: 4px solid var(--black);
  border-radius: var(--radius);
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--black);
  font-weight: 900;
  transform: translateY(140%);
  transition: transform 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border: 4px solid var(--black);
    border-radius: var(--radius);
    background: var(--yellow);
    cursor: pointer;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 4px;
    border-radius: 999px;
    background: var(--black);
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  body.menu-open .site-nav,
  body.menu-open .header-actions {
    position: fixed;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 4px solid var(--black);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .site-nav {
    top: 94px;
    gap: 0;
  }

  body.menu-open .site-nav a {
    padding: 22px;
    border-bottom: 4px solid var(--black);
  }

  body.menu-open .header-actions {
    top: 366px;
    padding: 22px;
  }

  .hero,
  .split-band,
  .how,
  .use-cases,
  .pricing,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
    max-width: 620px;
  }

  .split-band,
  .final-cta {
    align-items: start;
  }

  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-copy,
  .pricing-copy {
    position: static;
  }

  .pricing-grid .price-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 88px;
    padding-block: 20px;
  }

  .brand {
    gap: 10px;
    font-size: 28px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-mark span {
    width: 20px;
    height: 20px;
  }

  .brand-mark span::before,
  .brand-mark span::after {
    top: 4px;
    height: 12px;
  }

  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h1 {
    font-size: clamp(56px, 18vw, 72px);
  }

  h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  h3 {
    font-size: 27px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-text,
  .split-band > p,
  .how-copy p,
  .pricing-copy p,
  .final-cta p {
    font-size: 21px;
  }

  .hero-actions,
  .signup-form > div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .signup-form input {
    width: 100%;
  }

  .stats,
  .feature-grid,
  .pricing-grid,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .stats div {
    min-height: 90px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .yellow-card {
    width: 82%;
    height: 74%;
  }

  .teal-card {
    top: 8%;
    left: 0;
    width: 52%;
  }

  .transcript-card {
    top: 10%;
    right: 8%;
    width: 72%;
    box-shadow: 12px 12px 0 var(--black);
  }

  .window-bar {
    padding: 14px 16px;
  }

  .transcript-card blockquote {
    padding: 18px;
    font-size: 20px;
  }

  .summary-note {
    right: 7%;
    bottom: 4%;
    width: 70%;
  }

  .summary-note strong {
    font-size: 19px;
  }

  .feature-card {
    min-height: 265px;
  }

  .feature-icon {
    margin-bottom: 52px;
  }

  .steps article,
  .quote-board li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-board,
  .feature-card,
  .price-card {
    box-shadow: 8px 8px 0 var(--black);
  }

  .price-card.is-selected {
    transform: none;
  }

  .pricing-grid .price-card:last-child {
    grid-column: auto;
  }

  .final-cta {
    gap: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
