:root {
  --bg: #0b0d12;
  --bg-soft: #10131a;
  --surface: rgba(24, 28, 38, 0.82);
  --surface-strong: #171b24;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #f7f8fb;
  --muted: #a6adbb;
  --muted-strong: #c8ced9;
  --accent: #ff4b5c;
  --accent-light: #ff7b87;
  --accent-dark: #d93048;
  --violet: #9d8cff;
  --green: #73e0af;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -20%, rgba(157, 140, 255, 0.1), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(255, 123, 135, 0.82);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  font-weight: 750;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(11, 13, 18, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(255, 75, 92, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 620;
}

.nav-links a,
.site-footer nav a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-link {
  padding: 8px 2px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 720;
  transition: color 160ms ease;
}

.language-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #14080b;
  box-shadow: 0 12px 34px rgba(255, 75, 92, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(255, 75, 92, 0.3);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  padding-block: 110px 130px;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 72px;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -22%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 92, 0.16), rgba(157, 140, 255, 0.07) 45%, transparent 70%);
  filter: blur(20px);
}

.eyebrow {
  display: flex;
  margin: 0 0 18px;
  align-items: center;
  gap: 9px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(115, 224, 175, 0.1), 0 0 24px rgba(115, 224, 175, 0.42);
}

.hero h1,
.section-heading h2,
.demo-copy h2,
.release-card h2,
.final-cta h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 6.2vw, 84px);
}

.hero h1 span {
  background: linear-gradient(115deg, #ffffff 12%, var(--accent-light) 52%, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 19px;
  line-height: 1.7;
}

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

.trust-list {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-visual {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: #0d1016;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}

.window-bar {
  display: flex;
  height: 46px;
  padding-inline: 16px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  background: #12151d;
}

.window-bar > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3f4553;
}

.window-bar > span:first-child {
  background: var(--accent);
}

.window-bar > span:nth-child(2) {
  background: #f1b34c;
}

.window-bar > span:nth-child(3) {
  background: var(--green);
}

.window-bar p {
  margin: 0 0 0 8px;
  color: #79808f;
  font-size: 11px;
}

.hero-visual > img {
  aspect-ratio: 1.6 / 1;
  border-radius: 0 0 22px 22px;
  object-fit: cover;
  object-position: top left;
}

.floating-card {
  position: absolute;
  display: grid;
  min-width: 210px;
  padding: 14px 16px;
  gap: 2px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(20, 24, 33, 0.93);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  transform: rotateY(4deg);
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  color: var(--muted);
  font-size: 11px;
}

.floating-card-top {
  top: 90px;
  right: -35px;
}

.floating-card-bottom {
  bottom: -28px;
  left: 44px;
}

.proof-bar {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  display: grid;
  min-height: 132px;
  padding: 24px 40px;
  align-content: center;
  gap: 3px;
  border-left: 1px solid var(--line);
}

.proof-grid div:last-child {
  border-right: 1px solid var(--line);
}

.proof-grid strong {
  font-size: 26px;
  letter-spacing: -0.04em;
}

.proof-grid span {
  color: var(--muted);
  font-size: 13px;
}

.content-section {
  padding-block: 128px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.section-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.demo-copy h2,
.release-card h2,
.final-cta h2 {
  font-size: clamp(38px, 4.8vw, 58px);
}

.section-heading > p:last-child,
.demo-copy > p,
.release-card > div > p:last-child,
.final-cta > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
}

.workflow-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  list-style: none;
}

.workflow-grid li {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.014));
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.workflow-grid li:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 123, 135, 0.34);
  background: linear-gradient(160deg, rgba(255, 75, 92, 0.08), rgba(255, 255, 255, 0.02));
}

.step-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #535a69;
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid rgba(255, 123, 135, 0.25);
  border-radius: 13px;
  background: rgba(255, 75, 92, 0.1);
  color: var(--accent-light);
  font-size: 20px;
  font-weight: 800;
}

.workflow-grid h3,
.principle-grid h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.025em;
}

.workflow-grid p,
.principle-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 32%, rgba(255, 75, 92, 0.09), transparent 24%),
    rgba(255, 255, 255, 0.015);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.align-left {
  margin: 0;
  text-align: left;
}

.align-left .eyebrow {
  justify-content: flex-start;
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-weight: 760;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

.principle-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(15, 18, 25, 0.72);
}

.principle-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent-light);
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.browser-demo {
  display: grid;
  margin-bottom: 24px;
  padding: 48px;
  gap: 30px;
  border: 1px solid rgba(115, 224, 175, 0.26);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(115, 224, 175, 0.1), transparent 34%),
    var(--surface-strong);
  box-shadow: var(--shadow);
  grid-template-columns: 0.78fr 1.22fr;
}

.browser-demo-copy h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 50px);
}

.browser-demo-copy > p:last-child {
  color: var(--muted-strong);
}

.browser-demo-form {
  display: grid;
  align-content: start;
  gap: 12px;
}

.browser-demo-form label {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.browser-demo-form textarea {
  width: 100%;
  min-height: 132px;
  padding: 18px;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #0b0e14;
  color: var(--text);
  font: inherit;
  line-height: 1.55;
}

.browser-demo-form textarea:focus {
  border-color: var(--green);
}

.browser-demo-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.browser-demo-actions span,
.browser-demo-status {
  color: var(--muted);
  font-size: 12px;
}

.browser-demo-status {
  min-height: 20px;
  margin: 0;
  color: var(--green);
}

.browser-demo-result {
  display: grid;
  padding-top: 28px;
  gap: 22px;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  grid-template-columns: 0.78fr 1.22fr;
}

.browser-demo-result[hidden] {
  display: none;
}

.browser-demo-result h3 {
  margin-top: 8px;
  font-size: 26px;
}

.browser-demo-plan {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.browser-demo-plan li {
  display: grid;
  padding: 12px 14px;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 10, 15, 0.58);
  grid-template-columns: minmax(110px, 0.35fr) 1fr;
}

.browser-demo-plan time {
  color: var(--accent-light);
  font: 700 12px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.browser-demo-plan span {
  color: var(--muted-strong);
  font-size: 14px;
}

.browser-demo-risk {
  margin: 0;
  color: var(--muted-strong);
  grid-column: 1 / -1;
}

.browser-demo-result > .text-link {
  justify-self: start;
  grid-column: 1 / -1;
}

.demo-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 10% 10%, rgba(157, 140, 255, 0.1), transparent 30%),
    var(--surface-strong);
  box-shadow: var(--shadow);
  grid-template-columns: 0.88fr 1.12fr;
}

.demo-copy {
  padding: 64px;
}

.expected-output {
  display: grid;
  margin-top: 36px;
  gap: 8px;
}

.expected-output span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expected-output code {
  color: var(--green);
  font: 600 13px ui-monospace, SFMono-Regular, Menlo, monospace;
}

.terminal {
  position: relative;
  min-width: 0;
  margin: 34px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #080a0f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.terminal-header {
  display: flex;
  min-height: 48px;
  padding-inline: 18px 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.copy-button {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.copy-button:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.terminal pre {
  margin: 0;
  padding: 30px;
  overflow-x: auto;
  color: #dce1eb;
  font: 500 13px/2 ui-monospace, SFMono-Regular, Menlo, monospace;
}

.prompt {
  color: var(--accent-light);
  user-select: none;
}

.copy-status {
  position: absolute;
  right: 15px;
  bottom: 8px;
  margin: 0;
  color: var(--green);
  font-size: 11px;
}

.release-card {
  display: flex;
  min-height: 250px;
  padding: 54px 60px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid rgba(255, 123, 135, 0.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(110deg, rgba(255, 75, 92, 0.11), rgba(157, 140, 255, 0.06)),
    var(--surface-strong);
}

.release-card h2 {
  font-size: 42px;
}

.release-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}

.final-cta {
  padding-block: 100px 150px;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(44px, 6vw, 72px);
}

.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin-inline: auto;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080a0e;
}

.footer-grid {
  display: grid;
  min-height: 180px;
  padding-block: 34px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 16px 34px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  gap: 20px;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 650;
}

.copyright {
  grid-column: 2 / 4;
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-block: 90px 120px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(820px, 94%);
    margin-inline: auto;
    transform: none;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .align-left {
    max-width: 760px;
  }

  .demo-card {
    grid-template-columns: 1fr;
  }

  .browser-demo,
  .browser-demo-result {
    grid-template-columns: 1fr;
  }

  .demo-copy {
    padding-bottom: 18px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 64px;
    gap: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-block: 72px 96px;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual {
    width: 100%;
  }

  .floating-card {
    display: none;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-grid div {
    min-height: 110px;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .content-section {
    padding-block: 92px;
  }

  .workflow-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .workflow-grid li {
    min-height: 270px;
  }

  .demo-copy,
  .browser-demo,
  .release-card {
    padding: 34px 26px;
  }

  .browser-demo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .browser-demo-plan li {
    grid-template-columns: 1fr;
  }

  .terminal {
    margin: 0 14px 14px;
  }

  .terminal pre {
    padding: 24px 18px 38px;
    font-size: 11px;
  }

  .release-card,
  .release-actions {
    display: grid;
  }

  .release-actions {
    width: 100%;
  }

  .final-cta {
    padding-block: 80px 110px;
  }

  .footer-grid {
    padding-block: 48px;
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}

@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;
  }
}
