:root {
  color-scheme: light;
  --ink: #15110e;
  --muted: #665f58;
  --line: #ded7cf;
  --panel: #fffaf4;
  --paper: #f7efe5;
  --accent: #e8681b;
  --accent-dark: #9b370f;
  --green: #2d7d57;
  --blue: #2e6b8c;
  --red: #e45b4f;
  --yellow: #e6a93f;
  --shadow: 0 24px 70px rgba(42, 31, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(232, 104, 27, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffaf4 0%, #f5eadf 56%, #fffaf4 100%);
  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;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  padding: 14px max(20px, calc((100% - 1280px) / 2));
  border-bottom: 1px solid rgba(222, 215, 207, 0.72);
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(104, 52, 18, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 620;
}

nav a {
  border-radius: 8px;
  padding: 8px 12px;
}

nav a:hover,
nav a:focus-visible {
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
}

.nav-cta {
  color: var(--accent-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: 54px;
  align-items: center;
  width: min(1280px, calc(100% - 40px));
  min-height: 0;
  margin: 0 auto;
  padding: 44px 0 58px;
}

.hero-copy {
  max-width: 500px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 35rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 760;
}

.button.primary {
  background: var(--ink);
  color: #fffaf4;
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.availability {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.app-preview {
  margin: 0;
}

.mock-window {
  overflow: hidden;
  border: 1px solid rgba(21, 17, 14, 0.12);
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 24px 66px rgba(42, 31, 22, 0.2);
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  border-bottom: 1px solid rgba(222, 215, 207, 0.84);
  padding: 0 14px;
  background: rgba(247, 239, 229, 0.82);
}

.mock-titlebar strong {
  margin-left: 8px;
  font-size: 0.88rem;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-dot.red {
  background: var(--red);
}

.window-dot.yellow {
  background: var(--yellow);
}

.window-dot.green {
  background: var(--green);
}

.mock-app {
  display: grid;
  grid-template-columns: minmax(190px, 0.46fr) minmax(0, 1fr);
  min-height: 430px;
}

.mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-right: 1px solid var(--line);
  padding: 16px;
  background: #f6eee5;
}

.mock-meeting {
  display: grid;
  gap: 3px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.mock-meeting:hover,
.mock-meeting:focus-visible,
.mock-meeting.active {
  border-color: rgba(155, 55, 15, 0.22);
  background: rgba(255, 250, 244, 0.86);
  outline: none;
}

.mock-meeting span {
  font-size: 0.94rem;
  font-weight: 760;
}

.mock-meeting small {
  color: var(--muted);
  font-size: 0.78rem;
}

.mock-main {
  min-width: 0;
  padding: 22px;
  background: linear-gradient(180deg, #fffdf9, #fff7ef);
}

.mock-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mock-kicker {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mock-toolbar h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
}

.mock-record {
  flex: 0 0 auto;
  border: 0;
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--ink);
  color: #fffaf4;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 760;
  cursor: pointer;
}

.mock-record:hover,
.mock-record:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

.mock-wave {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 86px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(247, 239, 229, 0.55);
}

.mock-wave span {
  display: block;
  height: 34%;
  border-radius: 999px 999px 4px 4px;
  background: var(--accent);
  opacity: 0.74;
}

.mock-wave span:nth-child(2) {
  height: 74%;
  background: var(--blue);
}

.mock-wave span:nth-child(3) {
  height: 48%;
  background: var(--green);
}

.mock-wave span:nth-child(4) {
  height: 88%;
  background: var(--accent-dark);
}

.mock-wave span:nth-child(5) {
  height: 58%;
  background: var(--blue);
}

.mock-wave span:nth-child(6) {
  height: 42%;
  background: var(--green);
}

.mock-transcript {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mock-transcript p {
  margin: 0;
  border: 1px solid rgba(222, 215, 207, 0.72);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 250, 244, 0.78);
  color: var(--muted);
  font-size: 0.95rem;
}

.mock-transcript strong {
  margin-right: 6px;
  color: var(--ink);
}

.app-preview figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  min-width: 0;
  padding: 22px;
  background: rgba(255, 250, 244, 0.82);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 84px;
}

.section-heading {
  max-width: 720px;
}

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

.feature-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 250, 244, 0.78);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin: 0 10px 0 0;
  border-radius: 999px;
  background: #f2ded0;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 780;
}

.feature-grid h3 {
  display: inline;
  vertical-align: middle;
}

.feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
}

.skill-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8px 0 88px;
}

.skill-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 22px;
  align-items: start;
  margin-top: 30px;
}

.skill-copy {
  min-width: 0;
}

.skill-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.example-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.example-list span {
  border-left: 3px solid var(--accent);
  padding: 7px 0 7px 12px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 680;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.prompt-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15110e;
  color: #fffaf4;
}

.prompt-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 250, 244, 0.14);
  padding: 12px 14px;
}

.prompt-card-header strong {
  font-size: 0.9rem;
}

.prompt-card pre {
  margin: 0;
  overflow-x: auto;
  padding: 14px;
  color: #fffaf4;
  font-size: 0.88rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.prompt-card .copy-command {
  position: relative;
  top: auto;
  right: auto;
  flex: 0 0 auto;
}

.copy-command-light {
  border-color: rgba(255, 250, 244, 0.24);
  background: rgba(255, 250, 244, 0.08);
}

.install-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 0;
}

.install-steps {
  max-width: 720px;
  margin: 28px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.install-steps li + li {
  margin-top: 8px;
}

.command-box {
  position: relative;
  max-width: 840px;
  margin: 18px 0 0;
}

.command-box pre {
  margin: 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 92px 16px 16px;
  background: #15110e;
  color: #fffaf4;
  font-size: 0.95rem;
}

.copy-command {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 244, 0.1);
  color: #fffaf4;
  cursor: pointer;
}

.copy-command > span:first-child,
.copy-command > span:first-child::before {
  display: block;
  width: 13px;
  height: 13px;
  border: 1.6px solid currentColor;
  border-radius: 2px;
}

.copy-command > span:first-child {
  position: relative;
}

.copy-command > span:first-child::before {
  position: absolute;
  top: -5px;
  right: -5px;
  content: "";
  background: #15110e;
}

.copy-feedback {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  transform: translateY(4px);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 999px;
  padding: 4px 8px;
  background: #2d7d57;
  color: #fffaf4;
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease;
}

.copy-command:hover,
.copy-command:focus-visible,
.copy-command.copied {
  background: rgba(255, 250, 244, 0.2);
  outline: none;
}

.copy-command.copied {
  border-color: rgba(255, 250, 244, 0.42);
  background: var(--green);
}

.copy-command.copied > span:first-child {
  width: 15px;
  height: 8px;
  border-top: 0;
  border-right: 0;
  border-radius: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.copy-command.copied > span:first-child::before {
  display: none;
}

.copy-command.copied .copy-feedback {
  opacity: 1;
  transform: translateY(0);
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.install-note {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
}

.privacy-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto 34px;
  border-radius: 8px;
  padding: 34px;
  background: var(--ink);
  color: #fffaf4;
}

.privacy-section .eyebrow {
  color: #ffb06e;
}

.privacy-section p:last-child {
  align-self: end;
  margin: 0;
  color: #e8d7c8;
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 44px;
  }

  h1 {
    max-width: 12ch;
  }

  .trust-band,
  .feature-grid,
  .skill-layout,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    min-height: 0;
  }

  .mock-app {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
  }

  .brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  nav {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 0.84rem;
  }

  nav a {
    padding: 7px 8px;
  }

  .hero,
  .trust-band,
  .install-section,
  .section,
  .skill-section,
  .privacy-section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 20px;
  }

  .button {
    flex: 1 1 150px;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.92rem;
  }

  .availability,
  .app-preview {
    display: none;
  }

  .mock-titlebar {
    min-height: 34px;
    padding: 0 10px;
  }

  .mock-app {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    flex-direction: row;
    gap: 7px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px;
  }

  .mock-meeting {
    flex: 0 0 142px;
    padding: 9px;
  }

  .mock-meeting span {
    font-size: 0.82rem;
  }

  .mock-meeting small {
    font-size: 0.7rem;
  }

  .mock-main {
    padding: 14px;
  }

  .mock-toolbar h2 {
    font-size: 1.35rem;
  }

  .mock-record {
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .mock-wave {
    height: 54px;
    margin-top: 14px;
    padding: 9px;
  }

  .mock-transcript {
    gap: 7px;
    margin-top: 10px;
  }

  .mock-transcript p {
    padding: 9px 10px;
    font-size: 0.82rem;
  }

  .trust-band div {
    padding: 16px;
  }

  .install-section {
    padding-top: 46px;
  }

  .section {
    padding: 54px 0 48px;
  }

  .skill-section {
    padding: 0 0 48px;
  }

  .skill-layout {
    gap: 16px;
    margin-top: 20px;
  }

  .skill-copy p,
  .example-list span {
    font-size: 0.9rem;
  }

  .example-list {
    gap: 6px;
    margin-top: 14px;
  }

  .text-link {
    margin-top: 14px;
  }

  .prompt-card-header {
    padding: 10px 12px;
  }

  .prompt-card pre {
    padding: 12px;
    font-size: 0.78rem;
  }

  .feature-grid {
    gap: 10px;
    margin-top: 24px;
  }

  .feature-grid article {
    padding: 12px;
  }

  .feature-icon {
    width: 34px;
    height: 24px;
    margin: 0 8px 0 0;
    font-size: 0.72rem;
  }

  .feature-grid h3 {
    font-size: 0.98rem;
  }

  .feature-grid p {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .command-box pre {
    padding-right: 58px;
    font-size: 0.82rem;
  }

  .copy-feedback {
    right: -2px;
    bottom: calc(100% + 6px);
  }

  .privacy-section {
    padding: 24px;
  }

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