:root {
  color-scheme: dark;
  --bg: #0d1119;
  --surface: #131923;
  --surface-2: #1b2330;
  --text: #f0f2f7;
  --muted: #9ba6ba;
  --line: #293243;
  --accent: #7da6ff;
  --blue: #4a82ff;
  --green: #86d6ab;
  --red: #f5a0a0;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
button {
  background: none;
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
p {
  margin: 0;
  line-height: 1.75;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 550;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  background: var(--text);
  color: var(--bg);
  padding: 12px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid rgb(255 255 255 / 5%);
}
.header-inner {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.035em;
  font-weight: 650;
  font-size: 21px;
}
.header-inner nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.header-inner nav a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.18s;
}
.header-inner nav a:hover {
  color: var(--text);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 49px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 550;
  transition:
    background 0.18s,
    transform 0.18s,
    border-color 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--surface-2);
  border-color: var(--muted);
}
.button-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 22px rgb(74 130 255 / 15%);
}
.button-primary:hover {
  background: #6192ff;
  border-color: #6192ff;
}
.button-small {
  min-height: 39px;
  padding-inline: 15px;
  gap: 20px;
}
.menu-toggle {
  display: none;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
}
.text-link:hover {
  color: var(--accent);
}
.hero {
  position: relative;
  padding-top: 64px;
}
.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 800px;
  top: 170px;
  left: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse at 50% 70%,
    rgb(49 98 202 / 15%),
    transparent 67%
  );
  pointer-events: none;
}
.hero-copy {
  text-align: center;
}
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 11px;
  letter-spacing: 0.025em;
  color: #c5cede;
  background: rgb(19 25 35 / 65%);
}
.announcement-divider {
  margin-inline: 1px;
  color: #53627c;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex: none;
}
.announcement .status-dot {
  background: var(--accent);
  box-shadow: 0 0 12px rgb(125 166 255 / 35%);
}
h1 {
  font-size: clamp(58px, 7vw, 88px);
  line-height: 1.03;
  margin-top: 30px;
  font-weight: 550;
  letter-spacing: -0.065em;
}
h1 > span {
  color: var(--accent);
}
.hero-description {
  font-size: 17px;
  line-height: 1.65;
  color: #b0bbce;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 29px;
}
.hero-note {
  font-size: 11px;
  color: #8794aa;
  margin-top: 19px;
}
.diff-added {
  color: var(--green);
}
.diff-deleted {
  color: var(--red);
}
.agent-band {
  text-align: center;
  padding-top: 64px;
  padding-bottom: 66px;
  border-bottom: 1px solid var(--line);
}
.agent-band > p:first-child {
  font-size: 12px;
  color: #99a7be;
}
.agent-band > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 25px;
  flex-wrap: wrap;
}
.agent-band > div > span {
  font-size: 21px;
  font-weight: 550;
  letter-spacing: -0.04em;
  color: #d9e1ee;
}
.agent-band > div > span.band-divider {
  width: 1px;
  height: 26px;
  background: var(--line);
}
.agent-band > div > span.tidewave-label {
  font-size: 11px;
  color: #8796af;
  letter-spacing: 0;
  font-weight: 400;
}
.tidewave-label strong {
  display: block;
  color: #d9e1ee;
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 550;
  margin-top: 4px;
}
.agent-band .band-note {
  font-size: 10px;
  color: #8a98ae;
  margin-top: 23px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: block;
  margin-bottom: 22px;
}
.section-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px 90px;
}
.section-intro > .eyebrow {
  grid-column: 1/-1;
  margin: 0;
}
.section-intro > p {
  max-width: 360px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 60px;
}
.feature-grid article {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  min-width: 0;
}
.feature-number {
  font-family: var(--mono);
  font-size: 9px;
  color: #8091ac;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 21px;
}
.feature-grid h3 {
  margin-bottom: 14px;
}
.feature-grid p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  min-height: 94px;
}
.feature-detail {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-top: 25px;
  font-family: var(--mono);
  font-size: 8px;
  color: #a5b8d7;
  min-width: 0;
  flex-wrap: wrap;
}
.selection-tag {
  padding: 3px 6px;
  border: 1px solid #3c5480;
  border-radius: 4px;
  background: #19263c;
  color: var(--accent);
}
.context-section {
  background: #111824;
  border-block: 1px solid #253145;
}
.context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.context-copy > p {
  font-size: 13px;
  color: #acb9ce;
  margin-top: 25px;
}
.context-copy > p.context-secondary {
  font-size: 12px;
  color: #8596b1;
  margin-top: 15px;
}
.context-copy .text-link {
  margin-top: 26px;
  color: #cbdaf4;
}
.context-diagram {
  max-width: 420px;
  width: 100%;
  margin-left: auto;
}
.context-inputs,
.context-outputs {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.context-inputs > span {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid #33425b;
  border-radius: 5px;
  font-size: 10px;
  background: #141e2e;
  color: #b9c9e0;
}
.context-inputs > span > span {
  color: #688abc;
}
.context-connector {
  height: 48px;
  width: 1px;
  margin: auto;
  background: linear-gradient(#4c6da6, #2a405e);
}
.context-center {
  border: 1px solid #46679e;
  background: linear-gradient(120deg, #172a49, #152137);
  border-radius: 9px;
  padding: 24px 27px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 0 44px rgb(54 102 180 / 10%);
}
.context-center strong {
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.035em;
}
.context-center > div > span {
  font-size: 10px;
  color: #99b2d8;
  display: block;
  margin-top: 4px;
}
.context-outputs > span {
  padding: 10px 20px;
  border-radius: 4px;
  background: #1a263a;
  color: #9cb3d5;
  font-size: 10px;
}
.context-footnote {
  text-align: center;
  color: #8297b8;
  font-size: 10px;
  margin-top: 25px;
}
.companion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.companion-copy > p {
  font-size: 15px;
  color: #aebbd0;
}
.companion-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.companion-tags > span {
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 9px;
  color: #9babbe;
  padding: 6px 9px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  padding: 21px 0;
  list-style: none;
  font-size: 13px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  color: #8394b0;
  transition: transform 0.18s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 12px;
  color: var(--muted);
  padding-bottom: 22px;
  padding-right: 22px;
}
.faq-list details a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent);
}
.early-access {
  text-align: center;
  border-top: 1px solid var(--line);
  background: radial-gradient(ellipse at 50% 110%, #142340, transparent 68%);
  padding-top: 85px;
  padding-bottom: 86px;
}
.early-access .eyebrow {
  margin-bottom: 26px;
}
.early-access h2 {
  font-size: clamp(34px, 4vw, 51px);
}
.early-access p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 21px;
}
.early-access .button {
  margin-top: 27px;
}
.contact-address {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 16px auto 0;
  font-size: 10px;
  color: #8c9cb5;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 29px;
  font-size: 10px;
  border-top: 1px solid var(--line);
}
.site-footer .wordmark {
  font-size: 17px;
  gap: 8px;
}
.site-footer p {
  color: #8c9bb1;
}
.site-footer > a:not(.wordmark) {
  margin-left: auto;
  color: #b5c4dc;
}
.copyright {
  color: #7d8ba2;
}
.reveal {
  transition:
    opacity 0.55s,
    transform 0.55s;
}
.reveal.pending {
  opacity: 0;
  transform: translateY(16px);
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 78px;
  }
  .hero-copy h1 {
    font-size: 92px;
  }
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .feature-grid {
    gap: 25px;
  }
  .context-grid,
  .companion {
    gap: 65px;
  }
  .faq {
    gap: 60px;
  }
  .context-inputs > span {
    padding: 10px 11px;
  }
  .context-outputs > span {
    padding: 10px 17px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 75px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .section-space {
    padding-block: 66px;
  }
  .header-inner {
    height: 72px;
    gap: 20px;
  }
  .header-inner nav {
    gap: 18px;
  }
  .header-inner nav a {
    font-size: 11px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    padding-top: 46px;
  }
  h1 {
    font-size: 62px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-note {
    font-size: 10px;
    max-width: 290px;
    margin-inline: auto;
  }
  .agent-band {
    padding-block: 45px;
  }
  .agent-band > div {
    gap: 25px;
  }
  .agent-band > div > span {
    font-size: 19px;
  }
  .section-intro {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .section-intro > p {
    max-width: 480px;
    margin-top: 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 32px;
  }
  .feature-number {
    margin-bottom: 14px;
  }
  .feature-grid p {
    min-height: 0;
    max-width: 540px;
  }
  .feature-detail {
    padding-top: 17px;
    font-size: 9px;
  }
  .context-grid,
  .companion,
  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .context-diagram {
    margin-inline: auto;
    max-width: 430px;
  }
  .context-inputs > span {
    padding: 12px 15px;
  }
  .context-center {
    padding: 23px;
  }
  .context-outputs > span {
    padding: 12px 23px;
  }
  .companion-copy > p {
    font-size: 14px;
  }
  .companion {
    gap: 25px;
  }
  .faq {
    gap: 30px;
  }
  .faq-intro h2 br {
    display: none;
  }
  .early-access {
    padding-block: 65px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 17px 20px;
  }
  .site-footer p {
    font-size: 9px;
  }
  .site-footer .copyright {
    width: 100%;
    font-size: 9px;
  }
}
@media (max-width: 480px) {
  .header-inner {
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 12px;
    color: #b5c3da;
    padding: 10px 0;
  }
  .menu-toggle > span {
    font-size: 20px;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] > span {
    transform: rotate(45deg);
  }
  .header-inner nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    flex-direction: column;
    gap: 0;
    background: #131c2a;
    border-bottom: 1px solid #33405a;
    padding: 12px 18px;
    margin: 0;
    align-items: stretch;
  }
  .header-inner nav.open {
    display: flex;
  }
  .header-inner nav a {
    padding: 13px;
    font-size: 13px;
  }
  .hero {
    padding-top: 37px;
  }
  h1 {
    font-size: 54px;
    margin-top: 25px;
  }
  .hero-description {
    font-size: 14px;
    margin-top: 21px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }
  .hero-note {
    margin-top: 20px;
  }
  .announcement {
    font-size: 10px;
    padding: 7px 10px;
    gap: 8px;
  }
  .agent-band > div {
    gap: 25px;
  }
  .agent-band > div > span.band-divider {
    display: none;
  }
  .agent-band > div > span.tidewave-label {
    width: 100%;
    font-size: 10px;
  }
  .tidewave-label strong {
    display: inline;
    font-size: 16px;
    margin-left: 4px;
  }
  .agent-band .band-note {
    max-width: 290px;
    margin-inline: auto;
    font-size: 9px;
  }
  .section-intro > p {
    font-size: 13px;
  }
  .context-inputs > span {
    font-size: 9px;
    padding: 10px 13px;
  }
  .context-outputs > span {
    font-size: 9px;
    padding: 10px 20px;
  }
  .context-center strong {
    font-size: 20px;
  }
  .context-center > div > span {
    font-size: 9px;
  }
  .context-center {
    padding: 22px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .site-footer {
    gap: 14px;
  }
  .site-footer .wordmark {
    font-size: 16px;
  }
  .early-access h2 {
    font-size: 34px;
  }
  .early-access p {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.pending {
    opacity: 1;
    transform: none;
  }
}

/* Product-led landing: current app captures rather than reconstructed UI. */
:root {
  --bg: #0b0e14;
  --accent: #8cb0ff;
}
.hero-copy {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0 68px;
  text-align: left;
  align-items: start;
}
.hero-copy .announcement {
  grid-column: 1/-1;
  justify-self: start;
  margin-bottom: 28px;
}
.hero-copy h1 {
  grid-column: 1;
  grid-row: 2/5;
  font-size: clamp(60px, 6.1vw, 84px);
  margin-top: 0;
  line-height: 1.1;
}
.hero-copy .hero-description {
  grid-column: 2;
  grid-row: 2;
  margin-top: 12px;
  max-width: 450px;
}
.hero-copy .hero-actions {
  grid-column: 2;
  grid-row: 3;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-copy .hero-note {
  grid-column: 2;
  grid-row: 4;
  margin-top: 16px;
}
.container {
  width: min(1200px, calc(100% - 80px));
}
.site-header {
  position: sticky;
  top: 0;
  background: rgb(11 14 20 / 92%);
  backdrop-filter: blur(16px);
  z-index: 10;
}
.header-inner {
  height: 76px;
}
.button {
  min-height: 52px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
}
.button-small {
  min-height: 40px;
  font-size: 12px;
}
.text-link {
  min-height: 44px;
  font-size: 14px;
}
.hero {
  padding-top: 78px;
}
h1 {
  font-size: clamp(58px, 7.2vw, 96px);
  font-weight: 600;
}
.announcement {
  border-radius: 30px;
  padding: 9px 13px;
  background: #121b2a;
  border-color: #34435e;
}
.hero-description {
  font-size: 18px;
  line-height: 1.7;
}
.hero-note {
  font-size: 12px;
}
.product-showcase {
  margin-top: 68px;
  scroll-margin-top: 100px;
}
.showcase-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.showcase-heading .eyebrow {
  margin: 0;
}
.capture-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #96a6c0;
}
.showcase-tabs {
  display: flex;
  gap: 8px;
  padding: 8px;
  background: #141a24;
  border: 1px solid #344056;
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
}
.showcase-tabs button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 18px;
  font-size: 12px;
  color: #a9b6cb;
  border-radius: 7px;
  transition:
    background 0.2s,
    color 0.2s;
}
.showcase-tabs button > span {
  font: 10px var(--mono);
  opacity: 0.65;
}
.showcase-tabs button:hover {
  background: #202a3b;
}
.showcase-tabs button[aria-selected="true"] {
  background: #273955;
  color: #e1ecff;
}
.screenshot-panel {
  margin: 0;
  border: 1px solid #344056;
  border-radius: 0 0 13px 13px;
  overflow: hidden;
  background: #11151e;
  box-shadow: 0 30px 90px rgb(0 0 0 / 35%);
}
.screenshot-link {
  display: block;
  background: #17191f;
  transition: filter 0.2s;
}
.screenshot-link picture,
.screenshot-link img {
  display: block;
  width: 100%;
  height: auto;
}
.screenshot-link:hover {
  filter: brightness(1.06);
}
.screenshot-panel figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-top: 1px solid #303a4c;
}
.screenshot-panel figcaption strong {
  font-size: 15px;
  font-weight: 550;
}
.screenshot-panel figcaption p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}
.screenshot-open {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 44px;
  color: var(--accent);
  white-space: nowrap;
  font-size: 12px;
}
.showcase-points {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 25px;
  font-size: 11px;
  color: #a3b2c9;
}
.showcase-points > span {
  display: flex;
  gap: 9px;
  align-items: center;
}
.showcase-points > span > span {
  color: var(--accent);
  font-size: 14px;
}
.agent-band > div > span {
  font-size: 25px;
}
.agent-band .band-note {
  font-size: 11px;
}
.feature-grid {
  gap: 18px;
  margin-top: 46px;
}
.feature-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(150deg, #151e2c, #10151e);
}
.feature-grid p {
  min-height: 0;
}
.feature-detail {
  overflow-wrap: anywhere;
}
.companion {
  grid-template-columns: 1fr 1.1fr 0.8fr;
  gap: 40px;
}
.companion .eyebrow {
  line-height: 1.6;
}
.companion-copy .text-link {
  margin-top: 20px;
  color: var(--accent);
}
.mobile-product {
  margin: 0 0 0 auto;
  width: min(100%, 235px);
}
.mobile-product img {
  height: auto;
  border: 1px solid #4a5570;
  border-radius: 19px;
  padding: 5px;
  background: #222a37;
  box-shadow: 0 20px 60px #0006;
}
.mobile-product figcaption {
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
  color: #90a2bd;
  margin-top: 16px;
}
.faq-list summary {
  font-size: 14px;
  padding-block: 23px;
}
.faq-list details > p {
  font-size: 13px;
}
.contact-address {
  font-size: 12px;
  min-height: 30px;
}
.site-footer > a:not(.wordmark) {
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  .feature-grid article {
    padding: 23px;
  }
  .companion {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .mobile-product {
    grid-column: 2;
    grid-row: 1/3;
  }
  .companion-copy {
    grid-column: 1;
  }
  .companion h2 {
    font-size: 42px;
  }
}
@media (max-width: 760px) {
  .hero-copy {
    display: block;
    text-align: center;
  }
  .hero-copy .announcement {
    margin-bottom: 26px;
  }
  .hero-copy h1 {
    font-size: 62px;
    line-height: 1.04;
  }
  .hero-copy .hero-description {
    max-width: 560px;
    margin: 24px auto 0;
  }
  .hero-copy .hero-actions {
    justify-content: center;
  }
  .hero-copy .hero-note {
    margin-top: 16px;
  }
  .container {
    width: calc(100% - 36px);
  }
  .header-inner {
    height: 68px;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-description {
    font-size: 16px;
  }
  .product-showcase {
    margin-top: 48px;
  }
  .screenshot-panel figcaption {
    padding: 21px;
    gap: 14px;
  }
  .showcase-points {
    gap: 22px;
    font-size: 10px;
  }
  .feature-grid {
    gap: 14px;
    margin-top: 32px;
  }
  .feature-grid article {
    padding: 27px;
  }
  .feature-grid p {
    font-size: 14px;
  }
  .feature-detail {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .hero-copy h1 {
    font-size: clamp(44px, 12.2vw, 68px);
  }
  .header-inner {
    justify-content: space-between;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 44px;
    padding: 0 8px;
    font-size: 13px;
    color: #b6c5de;
  }
  .menu-toggle > span {
    font-size: 22px;
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] > span {
    transform: rotate(45deg);
  }
  .header-inner nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    background: #151e2b;
    border-bottom: 1px solid #34445f;
  }
  .header-inner nav.open {
    display: flex;
  }
  .header-inner nav a {
    padding: 15px;
    font-size: 14px;
  }
  h1 {
    font-size: clamp(44px, 12.2vw, 68px);
    margin-top: 26px;
  }
  .hero:before {
    left: 0;
    width: 100%;
  }
  .hero-description {
    font-size: 15px;
    margin-top: 23px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 13px;
    margin-top: 25px;
  }
  .hero-actions .button {
    width: min(100%, 320px);
  }
  .hero-note {
    font-size: 11px;
    margin-top: 13px;
  }
  .showcase-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .showcase-tabs {
    gap: 4px;
    padding: 7px;
  }
  .showcase-tabs button {
    flex: 1;
    justify-content: center;
    padding-inline: 10px;
    min-height: 46px;
  }
  .screenshot-link {
    padding: 20px;
    background: radial-gradient(ellipse at 50% 20%, #25334b, #111722 75%);
  }
  .screenshot-link picture {
    width: min(100%, 310px);
    margin-inline: auto;
  }
  .screenshot-link img {
    border: 1px solid #52617d;
    border-radius: 12px;
    box-shadow: 0 16px 38px #0005;
  }
  .screenshot-panel figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 22px;
  }
  .screenshot-panel figcaption strong {
    font-size: 15px;
    line-height: 1.5;
  }
  .screenshot-panel figcaption p {
    font-size: 13px;
  }
  .showcase-points {
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 11px;
  }
  .agent-band > div > span.band-divider {
    display: none;
  }
  .agent-band > div > span.tidewave-label {
    width: 100%;
    font-size: 11px;
  }
  .tidewave-label strong {
    display: inline;
    font-size: 18px;
    margin-left: 5px;
  }
  .agent-band .band-note {
    font-size: 11px;
    max-width: 310px;
    margin-inline: auto;
  }
  .companion {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .companion-copy,
  .mobile-product {
    grid-column: auto;
    grid-row: auto;
  }
  .mobile-product {
    width: 230px;
    margin: 12px auto 0;
  }
  .context-inputs > span {
    font-size: 10px;
    padding: 11px;
    gap: 7px;
  }
  .context-outputs > span {
    padding: 12px 20px;
    font-size: 10px;
  }
  .context-center {
    padding: 23px;
    gap: 13px;
  }
  .context-center > div > span {
    font-size: 10px;
  }
  .early-access h2 {
    font-size: clamp(30px, 8.5vw, 42px);
  }
  .site-footer > a:not(.wordmark) {
    margin-left: 0;
  }
}
