:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #09090b;
  --surface: #151519;
  --surface-2: #202027;
  --surface-3: #292931;
  --line: rgba(255,255,255,.14);
  --line-strong: rgba(255,255,255,.24);
  --text: #f7f7f8;
  --muted: #b2b2b8;
  --faint: #77777f;
  --orange: #ff9f2d;
  --green: #75e7ae;
  --blue: #71c8ff;
  --yellow: #f8d65b;
  --red: #ff6570;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --max: 1448px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 0;
  background: linear-gradient(180deg, #050506 0%, #08080a 44%, #050506 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Segoe UI, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 120;
  min-height: 44px;
  margin: -1px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: #09090b;
  color: #fff;
  font-weight: 900;
  font-size: .84rem;
  line-height: 1;
  clip-path: inset(100%);
  clip: rect(0,0,0,0);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: none;
  transition: opacity .2s ease;
  outline: none;
}

.skip-link:focus-visible {
  margin: 0;
  width: auto;
  height: auto;
  padding: 10px 16px;
  overflow: visible;
  visibility: visible;
  clip-path: inset(0);
  clip: auto;
  pointer-events: auto;
  opacity: 1;
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

body.using-keyboard .skip-link:focus,
body.using-keyboard .skip-link:focus-visible {
  margin: 0;
  width: auto;
  height: auto;
  padding: 10px 16px;
  overflow: visible;
  visibility: visible;
  clip-path: inset(0);
  clip: auto;
  pointer-events: auto;
  opacity: 1;
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  background: #09090b;
}

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

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(1448px, calc(100% - 72px));
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(13,13,16,.78);
  box-shadow: 0 18px 60px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 850;
}

.language-switcher span {
  color: var(--muted);
}

.language-switcher select {
  min-width: 112px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 900;
  outline: none;
}

.language-switcher option {
  color: #050506;
  background: #fff;
}

.mobile-language-switcher {
  display: none;
}

.brand,
.logo-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand {
  min-height: 44px;
}

.brand strong,
.product-name {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.05;
}

.brand small,
.tagline {
  display: block;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}

.brand > strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #fff;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: 0 14px 32px rgba(0,0,0,.34);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark.large {
  width: 82px;
  height: 82px;
  border-radius: 22px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.nav a,
.mobile-menu a {
  transition: color .2s ease, opacity .2s ease;
}

.nav a:hover,
.mobile-menu a:hover {
  color: var(--text);
}

.nav a[aria-current],
.mobile-menu a[aria-current] {
  color: var(--orange);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  place-items: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.apple-mark {
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(-1px);
}

.play-mark {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  opacity: .9;
}

.header-cta,
.primary-button {
  color: #080808;
  background: var(--orange);
  box-shadow: 0 16px 38px rgba(255,159,45,.24);
}

.secondary-button {
  color: var(--text);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  padding: 12px;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  margin: 0 auto;
  padding: 10px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(5,5,6,.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,.5);
}

.sticky-cta p {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-weight: 850;
  line-height: 1.35;
}

.sticky-cta__button {
  display: inline-grid;
  place-items: center;
  height: 46px;
  min-height: 46px;
  padding: 2px 20px 0;
  border-radius: 999px;
  background: var(--orange);
  color: #080808;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
}

.reveal.is-visible {
  animation: fadeSoft .7s ease both;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
}

.mobile-menu {
  position: fixed;
  inset: 86px 18px auto;
  z-index: 99;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: calc(100dvh - 106px);
  overflow-y: auto;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(16,16,19,.96);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 850;
  background: rgba(255,255,255,.05);
}

.mobile-menu.open {
  display: grid;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  margin-top: 22px;
  padding: 72px clamp(32px, 6vw, 88px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: #030304;
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,5,6,.96) 0%, rgba(5,5,6,.82) 36%, rgba(5,5,6,.25) 68%, rgba(5,5,6,.06) 100%),
    linear-gradient(180deg, rgba(5,5,6,.08), rgba(5,5,6,.48));
  pointer-events: none;
}

.hero > .hero-photo {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  max-width: none;
  width: 100%;
  height: 100%;
}

.hero > .hero-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
}

.hero-copy h1 {
  max-width: min(580px, 100%);
  margin: 18px 0 18px;
  font-size: 4.55rem;
  line-height: .94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.accent-word,
.section-accent {
  color: var(--orange);
}

.hero-tone-white {
  color: #fff;
}

.hero-tone-green,
.hero-tone-green span {
  color: var(--green);
}

.hero-tone-blue,
.hero-tone-blue span {
  color: var(--blue);
}

.copy-column,
.watch-copy {
  min-width: 0;
}

.hero-line {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-line-keep {
  white-space: nowrap;
}

.hero-text {
  max-width: 505px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 1.12rem;
  font-weight: 650;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: .7rem;
  font-weight: 760;
}

.hero-trust > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: var(--orange);
  font-size: .88rem;
  line-height: 1;
}

.start-section {
  padding: 82px 0 44px;
}

.start-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.start-step {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 196px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.033)),
    rgba(255,255,255,.032);
}

.start-step > div {
  display: grid;
  gap: 8px;
}

.start-step strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 930;
}

.start-step p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
  font-size: 1rem;
}

.start-step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #050506;
  background: var(--orange);
  font-size: .9rem;
  font-weight: 930;
}

.start-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.platform-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  max-width: 100%;
}

.platform-line span {
  padding: 8px 12px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  font-size: .82rem;
  font-weight: 850;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  max-width: 100%;
}

.trust-list li {
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: .88rem;
  font-weight: 800;
}

.price-card {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,159,45,.12), rgba(255,255,255,.04)),
    rgba(255,255,255,.035);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
}

.price-card.compact {
  display: grid;
  gap: 4px;
  max-width: 520px;
  margin-top: 20px;
  padding: 18px 20px;
}

.price-card span {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.price-card strong {
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.price-card small {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.45;
}

.section-stripes {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1.15fr 1.15fr 1.15fr;
  gap: 10px;
  width: min(425px, 100%);
  margin-top: 0;
}

.section-stripes span {
  height: 6px;
  border-radius: 999px;
}

.section-stripes span:nth-child(1) { background: rgba(255,255,255,.88); }
.section-stripes span:nth-child(2) { background: var(--green); }
.section-stripes span:nth-child(3) { background: var(--blue); }
.section-stripes span:nth-child(4) { background: var(--yellow); }
.section-stripes span:nth-child(5) { background: var(--red); }

.hero-media {
  position: relative;
  min-height: 468px;
}

.hero-product-stack {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 468px;
}

.hero-laptop {
  position: absolute;
  left: 0;
  top: 8px;
  z-index: 2;
  width: min(66%, 640px);
  overflow: visible;
  transform: none;
}

.hero-laptop::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -28px;
  height: 34px;
  border-radius: 0 0 42px 42px;
  background:
    radial-gradient(circle at 50% 2px, rgba(0,0,0,.42), transparent 16px),
    linear-gradient(180deg, #d9d9da 0%, #797a7d 52%, #2d2e31 100%);
  box-shadow: 0 22px 50px rgba(0,0,0,.55);
}

.hero-laptop .macbook-top {
  height: 28px;
  border-radius: 22px 22px 0 0;
}

.hero-pocket-device {
  position: absolute;
  right: clamp(150px, 17vw, 252px);
  top: 132px;
  bottom: auto;
  z-index: 4;
  width: clamp(108px, 9.5vw, 146px);
  height: clamp(235px, 20.7vw, 318px);
  border-radius: 26px;
  transform: none;
  box-shadow: 0 22px 70px rgba(0,0,0,.6);
}

.hero-stage-device {
  position: absolute;
  right: 0;
  top: 26px;
  z-index: 3;
  width: clamp(188px, 18.2vw, 266px);
  height: clamp(270px, 26.2vw, 383px);
  border-radius: 28px;
  transform: none;
  box-shadow: 0 22px 70px rgba(0,0,0,.58);
}

.device-frame,
.phone-frame,
.performance-card,
.screens-grid figure {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #030304;
  box-shadow: var(--shadow);
}

.ipad-frame {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 500px);
  height: 620px;
  border-radius: 34px;
}

.ipad-frame img,
.performance-card img,
.screens-grid img,
.device-frame.tall img,
.phone-frame img {
  width: 100%;
  height: 100%;
  object-position: top center;
}

.ipad-frame img,
.performance-card img {
  object-fit: cover;
}

.phone-frame img,
.device-frame.tall img,
.screens-grid img {
  object-fit: contain;
  background: #030304;
}

.hero-pocket-device img,
.hero-stage-device img {
  object-fit: cover;
  background: #030304;
}

.floating-watch {
  position: absolute;
  left: -14px;
  bottom: 10px;
  z-index: 5;
  transform: scale(.78);
  transform-origin: left bottom;
}

.watch-body.mini {
  width: 230px;
  height: 276px;
  padding: 13px;
  border-radius: 58px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 10px 0 82px;
}

.feature-strip article,
.about-card,
.privacy-points article,
.faq-list details {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.feature-strip article {
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.feature-strip article:hover,
.screens-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(255,159,45,.32);
}

.workflow-section,
.smart-section,
.import-section,
.new-features-section {
  padding: 82px 0 44px;
}

.smart-section {
  padding-top: 72px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.workflow-steps article,
.smart-grid article,
.import-grid article,
.new-feature-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.033)),
    rgba(255,255,255,.032);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}

.workflow-steps strong,
.smart-grid strong,
.import-grid strong,
.new-feature-grid strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
}

.workflow-steps span,
.smart-grid span,
.import-grid span,
.new-feature-grid span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.48;
}

.proof-section {
  padding: 82px 0 44px;
}

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

.proof-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.033)),
    rgba(255,255,255,.032);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}

.new-features-section {
  position: relative;
}

.new-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.new-feature-grid article:nth-child(1),
.new-feature-grid article:nth-child(4),
.new-feature-grid article:nth-child(7) {
  border-color: rgba(255,159,45,.2);
  background:
    linear-gradient(145deg, rgba(255,159,45,.11), rgba(255,255,255,.034)),
    rgba(255,255,255,.032);
}

.new-feature-grid article:nth-child(2),
.new-feature-grid article:nth-child(5),
.new-feature-grid article:nth-child(8) {
  border-color: rgba(113,200,255,.18);
  background:
    linear-gradient(145deg, rgba(113,200,255,.095), rgba(255,255,255,.034)),
    rgba(255,255,255,.032);
}

.proof-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 940;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 650;
}

.proof-note {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(113,200,255,.2);
  border-radius: 13px;
  background: rgba(113,200,255,.07);
  color: #eff9ff;
  font-size: .92rem;
  font-weight: 720;
}

.proof-grid article:hover {
  border-color: rgba(255,159,45,.32);
}

.language-section {
  margin: 48px 0;
  border-block: 1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(115deg, rgba(255,159,45,.11), rgba(113,200,255,.07) 46%, rgba(117,231,174,.06)),
    rgba(255,255,255,.025);
}

.language-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: 48px;
  align-items: start;
  padding: 82px 0;
}

.language-copy p:not(.section-label),
.section-heading.wide p:not(.section-label) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.55;
}

.language-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255,159,45,.22);
  border-radius: 18px;
  background: rgba(255,159,45,.075);
}

.language-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.language-list span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: #fff;
  font-size: .95rem;
  font-weight: 850;
  text-align: center;
}

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

.smart-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.smart-feature-card {
  grid-column: span 2;
}

.smart-feature-card.performance {
  border-color: rgba(117,231,174,.24);
  background:
    linear-gradient(145deg, rgba(117,231,174,.12), rgba(255,255,255,.035)),
    rgba(255,255,255,.032);
}

.smart-grid article:nth-child(odd),
.import-grid article:nth-child(2) {
  border-color: rgba(255,159,45,.2);
  background:
    linear-gradient(145deg, rgba(255,159,45,.115), rgba(255,255,255,.035)),
    rgba(255,255,255,.032);
}

.smart-section {
  padding: 18px 0 10px;
}

.agent-section {
  padding: 62px 0 34px;
}

.agent-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(113,200,255,.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 10%, rgba(113,200,255,.14), transparent 34%),
    radial-gradient(circle at 8% 90%, rgba(117,231,174,.09), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.026)),
    #0c0c0f;
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}

.agent-permission-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.agent-permission-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 236px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.04);
}

.agent-permission-grid article:nth-child(2),
.agent-permission-grid article:nth-child(4) {
  border-color: rgba(117,231,174,.18);
  background: rgba(117,231,174,.045);
}

.agent-permission-grid strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 930;
}

.agent-permission-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.agent-step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(113,200,255,.26);
  border-radius: 14px;
  background: rgba(113,200,255,.09);
  color: #dff4ff;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.agent-boundary {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.8fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 20px 22px;
  border: 1px solid rgba(255,159,45,.22);
  border-radius: 20px;
  background: rgba(255,159,45,.06);
}

.agent-boundary strong {
  color: #fff;
  font-size: 1.02rem;
}

.agent-boundary span {
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
  line-height: 1.48;
}

.agent-boundary a {
  color: var(--orange);
  font-size: .9rem;
  font-weight: 900;
  text-align: right;
}

.workflow-section {
  padding: 18px 0 54px;
}

.smart-panel,
.workflow-panel {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.026)),
    rgba(255,255,255,.022);
  box-shadow: 0 22px 80px rgba(0,0,0,.32);
}

.smart-panel {
  padding: 22px;
}

.smart-panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.smart-panel-header h2,
.workflow-panel h2 {
  margin: 0;
  color: #f6f6f7;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.smart-panel-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 760;
  white-space: nowrap;
}

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

.smart-panel .smart-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  align-items: center;
  column-gap: 14px;
  row-gap: 12px;
  min-height: 150px;
  padding: 18px 16px 20px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.018)),
    #111114;
  box-shadow: none;
}

.smart-panel .smart-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--orange);
}

.smart-panel .smart-green::before { background: var(--green); }
.smart-panel .smart-blue::before { background: var(--blue); }
.smart-panel .smart-yellow::before { background: var(--yellow); }
.smart-panel .smart-red::before { background: var(--red); }

.smart-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1;
  background: var(--orange);
}

.smart-green .smart-icon,
.workflow-green { background: rgba(117,231,174,.22); color: #87f2b9; border-color: rgba(117,231,174,.62); }
.smart-blue .smart-icon,
.workflow-blue { background: rgba(113,200,255,.2); color: #80cdff; border-color: rgba(113,200,255,.62); }
.smart-yellow .smart-icon,
.workflow-yellow { background: rgba(248,214,91,.22); color: #f8d65b; border-color: rgba(248,214,91,.62); }
.smart-red .smart-icon,
.workflow-red { background: rgba(255,101,112,.2); color: #ff737e; border-color: rgba(255,101,112,.62); }

.smart-panel .smart-card strong {
  color: #f8f8f8;
  font-size: .98rem;
  font-weight: 900;
}

.smart-panel .smart-card > span:last-child {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  font-weight: 650;
  line-height: 1.42;
}

.workflow-panel {
  padding: 26px;
}

.workflow-panel .workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
  margin-top: 26px;
}

.workflow-panel .workflow-steps article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.workflow-arrow {
  position: absolute;
  left: -37px;
  top: 29px;
  width: 40px;
  transform: translateY(-50%);
  color: rgba(255,255,255,.34);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  pointer-events: none;
}

.workflow-panel .workflow-steps strong {
  display: block;
  color: #fff;
  font-size: .98rem;
  font-weight: 900;
}

.workflow-panel .workflow-steps article div > span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.35;
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--orange);
  border-radius: 16px;
  background: rgba(255,159,45,.12);
  font-size: 1.35rem;
  font-weight: 900;
}

h2 {
  margin: 0;
  font-size: 3.75rem;
  line-height: .98;
  letter-spacing: 0;
}

h3,
.feature-strip h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.feature-strip p,
.copy-column p,
.about-card p,
.privacy-section p,
.faq-list p,
.final-cta p {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: 58px;
  align-items: center;
  padding: 92px 0;
}

.split-section.reverse {
  grid-template-columns: minmax(380px, 1.05fr) minmax(0, .95fr);
}

.split-section.reverse .copy-column {
  order: 2;
}

.split-section.reverse .performance-card {
  order: 1;
}

.section-label {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.copy-column > p:not(.section-label) {
  max-width: 620px;
}

.stacked-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.stacked-points div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.stacked-points strong {
  color: #fff;
}

.stacked-points span {
  color: var(--muted);
  font-weight: 650;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 20px;
}

.phone-frame {
  height: 560px;
  border-radius: 32px;
}

.phone-frame.hero-phone-peek {
  width: clamp(132px, 14vw, 176px);
  height: clamp(284px, 30vw, 372px);
}

.phone-frame.hero-pocket-device {
  width: clamp(108px, 9.5vw, 146px);
  height: clamp(235px, 20.7vw, 318px);
}

.phone-frame.hero-stage-device {
  width: clamp(188px, 18.2vw, 266px);
  height: clamp(270px, 26.2vw, 383px);
}

.phone-frame.offset {
  margin-top: 66px;
}

.setlists-frame img {
  object-fit: cover;
  object-position: 46% top;
}

.dark-band,
.privacy-section {
  margin: 42px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  border-block: 1px solid rgba(255,255,255,.09);
}

.transcribe-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: 66px;
  align-items: center;
  padding: 84px 0;
}

.device-frame.tall {
  height: 620px;
  border-radius: 34px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(117,231,174,.12);
}

.performance-card {
  height: 640px;
  border-radius: 34px;
}

.live-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.live-tools span {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 850;
}

.session-callout {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(117,231,174,.22);
  border-radius: 20px;
  background: rgba(117,231,174,.07);
}

.session-callout strong {
  color: #fff;
  font-size: 1.02rem;
}

.session-callout span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.watch-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 460px);
  gap: 62px;
  align-items: center;
  padding: 86px 0;
}

.mac-tv-section {
  padding: 92px 0 46px;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading.wide p:not(.section-label) {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.55;
}

.mac-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 24px;
  align-items: center;
}

.macbook-frame {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: #030304;
  box-shadow: var(--shadow);
}

.hero-mac {
  min-height: 0;
}

.macbook-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, #202026, #121216);
}

.macbook-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.macbook-top span:nth-child(1) { background: #ff6570; }
.macbook-top span:nth-child(2) { background: #f8d65b; }
.macbook-top span:nth-child(3) { background: #75e7ae; }

.macbook-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  background: #030304;
}

.mac-feature-cards {
  display: grid;
  gap: 14px;
}

.mac-feature-cards article {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 154px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(113,200,255,.11), rgba(255,255,255,.035)),
    rgba(255,255,255,.035);
}

.mac-feature-cards strong {
  color: #fff;
  font-size: 1.12rem;
}

.mac-feature-cards span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.mac-screens-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.mac-screens-row figure {
  overflow: visible;
  margin: 0;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 52px rgba(0,0,0,.24);
}

.mac-screens-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  background: #030304;
}

.macbook-mini {
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  border-radius: 24px 24px 0 0;
  box-shadow: none;
}

.macbook-mini .macbook-top {
  height: 26px;
  padding-inline: 14px;
}

.macbook-mini .macbook-top span {
  width: 8px;
  height: 8px;
}

.mac-screens-row figcaption {
  padding: 14px 16px;
  color: #fff;
  font-weight: 850;
}

.watch-showcase {
  display: grid;
  place-items: center;
  min-height: 590px;
}

.watch-band {
  width: 136px;
  height: 96px;
  background: linear-gradient(90deg, #111, #2c2c31, #111);
  border: 1px solid rgba(255,255,255,.12);
}

.watch-band.top {
  border-radius: 38px 38px 10px 10px;
  transform: translateY(16px);
}

.watch-band.bottom {
  border-radius: 10px 10px 42px 42px;
  transform: translateY(-16px);
}

.watch-body {
  position: relative;
  width: 280px;
  height: 336px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 70px;
  background: linear-gradient(145deg, #37373d, #09090b 42%, #2d2d32);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.04), 0 38px 90px rgba(0,0,0,.55);
}

.watch-crown {
  position: absolute;
  right: -14px;
  top: 124px;
  width: 12px;
  height: 60px;
  border-radius: 999px;
  background: #29292f;
  border: 1px solid rgba(255,255,255,.16);
}

.watch-side-button {
  position: absolute;
  right: -10px;
  top: 204px;
  width: 8px;
  height: 42px;
  border-radius: 999px;
  background: #222229;
  border: 1px solid rgba(255,255,255,.14);
}

.watch-screen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 24px 20px;
  overflow: hidden;
  border-radius: 54px;
  background:
    radial-gradient(circle at 68% 16%, rgba(117,231,174,.22), transparent 42%),
    radial-gradient(circle at 30% 72%, rgba(255,159,45,.2), transparent 44%),
    #050506;
  border: 1px solid rgba(255,255,255,.12);
}

.watch-status {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.watch-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.watch-body.mini .watch-screen {
  padding: 19px 16px;
  border-radius: 44px;
}

.watch-body.mini .watch-crown {
  right: -12px;
  top: 102px;
  width: 10px;
  height: 50px;
}

.watch-body.mini .watch-side-button {
  right: -9px;
  top: 168px;
  width: 7px;
  height: 36px;
}

.watch-body.mini .watch-title {
  font-size: .84rem;
}

.watch-body.mini .watch-record {
  width: 108px;
  height: 108px;
  font-size: .82rem;
  box-shadow: 0 0 0 10px rgba(255,159,45,.12), 0 18px 36px rgba(255,159,45,.16);
}

.watch-body.mini .watch-meter span:nth-child(1) { height: 12px; }
.watch-body.mini .watch-meter span:nth-child(2) { height: 21px; }
.watch-body.mini .watch-meter span:nth-child(3) { height: 17px; }
.watch-body.mini .watch-meter span:nth-child(4) { height: 25px; }

.watch-record {
  width: 142px;
  height: 142px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  color: #050506;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(255,159,45,.12), 0 18px 36px rgba(255,159,45,.18);
  font-size: 1rem;
  font-weight: 950;
}

.watch-meter {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 5px;
}

.watch-meter span {
  width: 7px;
  border-radius: 999px;
  background: var(--green);
  animation: meter 1.1s ease-in-out infinite;
}

.watch-meter span:nth-child(1) { height: 16px; }
.watch-meter span:nth-child(2) { height: 28px; animation-delay: .1s; }
.watch-meter span:nth-child(3) { height: 22px; animation-delay: .2s; }
.watch-meter span:nth-child(4) { height: 34px; animation-delay: .3s; }

.watch-metronome {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  text-align: center;
}

.watch-metronome strong {
  font-size: .9rem;
}

.watch-metronome small {
  color: var(--muted);
  font-weight: 700;
}

.pulse-dot {
  width: 18px;
  height: 18px;
  margin: 10px auto 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(255,101,112,.16);
  animation: pulse 1.4s ease-in-out infinite;
}

.screens-section {
  padding: 92px 0;
}

.pricing-section {
  padding: 88px 0 36px;
}

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

.pricing-grid .price-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 26px;
}

.pricing-grid .hero-price {
  border-color: rgba(255,159,45,.38);
  background:
    linear-gradient(145deg, rgba(255,159,45,.2), rgba(117,231,174,.06)),
    rgba(255,255,255,.045);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.screens-grid figure {
  height: 520px;
  margin: 0;
  border-radius: 30px;
}

.screens-grid figcaption {
  position: sticky;
  bottom: 0;
  padding: 14px 18px;
  color: #fff;
  background: rgba(5,5,6,.82);
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 46px;
  align-items: start;
  padding: 82px 0;
}

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

.privacy-points article {
  padding: 22px;
}

.privacy-link-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255,159,45,.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,159,45,.14), rgba(255,255,255,.04)),
    rgba(255,255,255,.035);
}

.privacy-link-card strong {
  font-size: 1.25rem;
}

.privacy-link-card span {
  max-width: 680px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.privacy-link-card .secondary-button {
  width: fit-content;
}

.privacy-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.privacy-points span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.about-section {
  padding: 72px 0 40px;
}

.about-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 34px;
}

.about-card p {
  max-width: 760px;
}

.about-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

@media (max-width: 720px) {
  .about-card-actions {
    width: 100%;
  }

  .about-card-actions .secondary-button {
    width: 100%;
    justify-content: center;
  }
}

.contact-section {
  padding: 72px 0 42px;
}

.contact-section .section-heading p:not(.section-label) {
  max-width: 660px;
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(117,231,174,.08), rgba(255,255,255,.035)),
    rgba(255,255,255,.035);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

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

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

.contact-form label span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
  color: #fff;
  font: inherit;
  font-weight: 700;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255,159,45,.64);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 5px rgba(255,159,45,.12);
}

.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: rgba(255,101,112,.55);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.captcha-field input {
  max-width: 180px;
}

.message-page {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100vh;
  gap: 18px;
}

.message-page h1 {
  margin: 0;
  font-size: 5.8rem;
  line-height: .95;
  letter-spacing: 0;
}

.message-page p {
  max-width: 620px;
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.5;
}

.legal-page {
  padding: 92px 0;
}

.legal-hero {
  max-width: 860px;
  margin-bottom: 30px;
}

.legal-hero h1 {
  margin: 0;
  font-size: 5.2rem;
  line-height: .95;
  letter-spacing: 0;
}

.legal-hero p:not(.section-label) {
  color: var(--muted);
  font-weight: 750;
}

.legal-card {
  max-width: 920px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
    rgba(255,255,255,.035);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}

.legal-card h2 {
  margin: 34px 0 12px;
  font-size: 2.15rem;
  letter-spacing: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.65;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

.legal-card a {
  color: var(--orange);
  font-weight: 850;
}

.faq-section {
  padding: 68px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 88px;
  padding: 36px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    linear-gradient(100deg, rgba(255,159,45,.17), transparent 42%),
    rgba(255,255,255,.05);
}

.final-cta h2 {
  font-size: 3.35rem;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.22);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  color: var(--muted);
  font-weight: 750;
}

.footer-inner a {
  color: #fff;
}

.footer-language-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-language-links a {
  color: var(--muted);
}

.footer-language-links a:hover {
  color: #fff;
}

@keyframes pulse {
  0%, 100% { transform: scale(.92); opacity: .78; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes meter {
  0%, 100% { transform: scaleY(.7); opacity: .72; }
  50% { transform: scaleY(1.1); opacity: 1; }
}

@keyframes fadeSoft {
  0% { opacity: .72; transform: translateY(14px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes stageFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-10px) rotate(-6deg); }
}

.watch-body.mini {
  transform: rotate(-8deg);
  animation: stageFloat 6s ease-in-out infinite;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .nav {
    display: none;
  }

  .site-header > .language-switcher {
    display: none;
  }

  .mobile-language-switcher {
    display: flex;
    justify-content: space-between;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
  }

  .menu-button {
    display: block;
  }

  .hero,
  .split-section,
  .split-section.reverse,
  .transcribe-layout,
  .mac-showcase,
  .watch-section,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .copy-column,
  .split-section.reverse .performance-card {
    order: initial;
  }

  .hero {
    min-height: 550px;
    padding: 56px 32px;
  }

  .hero-copy h1 {
    font-size: 3.7rem;
  }

  .hero-photo > img {
    object-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5,5,6,.96) 0%, rgba(5,5,6,.8) 44%, rgba(5,5,6,.35) 78%, rgba(5,5,6,.15) 100%),
      linear-gradient(180deg, rgba(5,5,6,.06), rgba(5,5,6,.5));
  }

  .hero-media {
    min-height: 470px;
  }

  .hero-product-stack {
    min-height: 470px;
  }

  .hero-laptop {
    left: 50%;
    top: 24px;
    width: min(70%, 640px);
    transform: translateX(-50%);
  }

  .hero-stage-device {
    right: 0;
    top: 102px;
  }

  .hero-pocket-device {
    right: clamp(116px, 19vw, 240px);
    top: auto;
    bottom: 18px;
  }

  .ipad-frame {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .feature-strip,
  .screens-grid,
  .mac-screens-row,
  .pricing-grid,
  .import-grid,
  .new-feature-grid,
  .agent-permission-grid,
  .proof-grid,
  .start-steps {
    grid-template-columns: 1fr;
  }

  .smart-panel .smart-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-panel .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .workflow-arrow {
    display: none;
  }

  .language-layout {
    grid-template-columns: 1fr;
  }

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

  .screens-grid figure {
    height: 620px;
  }

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

  .agent-boundary {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .agent-boundary a {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .section-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
    border-radius: 18px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .hero {
    min-height: 560px;
    padding: 34px 22px 120px;
    border-radius: 8px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5,5,6,.96) 0%, rgba(5,5,6,.83) 45%, rgba(5,5,6,.38) 76%, rgba(5,5,6,.12) 100%),
      linear-gradient(90deg, rgba(5,5,6,.72), rgba(5,5,6,.12));
  }

  .hero-photo > img {
    object-position: 72% center;
  }

  .logo-lockup {
    align-items: flex-start;
  }

  .brand-mark.large {
    width: 58px;
    height: 58px;
  }

  .hero-copy h1 {
    margin: 16px 0 14px;
    font-size: 2.86rem;
    line-height: .98;
  }

  .hero .section-stripes {
    display: none;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-text,
  .language-copy p:not(.section-label),
  .section-heading.wide p:not(.section-label) {
    font-size: 1.05rem;
  }

  .hero-actions,
  .final-cta,
  .about-card,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .sticky-cta,
  .sticky-cta__inner {
    align-items: stretch;
  }

  .sticky-cta__inner {
    flex-direction: column;
  }

  .sticky-cta__button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sticky-cta {
    padding: 8px;
  }

  .hero-actions {
    width: 100%;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .platform-line,
  .trust-list,
  .hero-trust {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
  }

  .platform-line span,
  .trust-list li,
  .hero-trust > span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    min-width: 0;
    text-align: center;
    white-space: nowrap;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .hero-trust > span {
    display: inline-flex;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .price-card.compact {
    width: 100%;
    max-width: 100%;
  }

  .hero-media {
    min-height: 250px;
  }

  .hero-product-stack {
    min-height: 250px;
  }

  .hero-laptop {
    left: 0;
    top: 32px;
    width: 82%;
    transform: none;
  }

  .hero-stage-device {
    display: none;
  }

  .hero-pocket-device {
    right: 0;
    top: auto;
    bottom: 4px;
    width: 82px;
    height: 178px;
    border-radius: 23px;
    transform: none;
  }

  .ipad-frame {
    width: 100%;
    height: 550px;
    border-radius: 28px;
  }

  .floating-watch {
    left: -2px;
    bottom: -20px;
    transform: scale(.62);
    transform-origin: left bottom;
  }

  .feature-strip {
    padding-bottom: 46px;
  }

  .smart-panel,
  .workflow-panel {
    padding: 18px;
  }

  .smart-panel-header {
    display: grid;
    gap: 10px;
  }

  .smart-panel-header h2,
  .workflow-panel h2 {
    font-size: 1.48rem;
  }

  .smart-panel-header a {
    white-space: normal;
  }

  .smart-panel .smart-grid,
  .workflow-panel .workflow-steps {
    grid-template-columns: 1fr;
  }

  .split-section,
  .workflow-section,
  .smart-section,
  .import-section,
  .new-features-section,
  .agent-section,
  .mac-tv-section,
  .watch-section,
  .start-section,
  .screens-section,
  .pricing-section,
  .faq-section,
  .proof-section {
    padding: 58px 0;
  }

  .media-grid,
  .privacy-points,
  .form-grid,
  .form-footer,
  .language-list,
  .agent-permission-grid {
    grid-template-columns: 1fr;
  }

  .agent-panel {
    border-radius: 24px;
  }

  .agent-permission-grid article {
    min-height: 0;
  }

  .captcha-field input {
    max-width: none;
  }

  .phone-frame,
  .phone-frame.offset,
  .performance-card,
  .device-frame.tall,
  .screens-grid figure {
    height: 560px;
    margin-top: 0;
  }

  .phone-frame.hero-pocket-device {
    width: 82px;
    height: 178px;
  }

  .phone-frame.hero-stage-device {
    display: none;
  }

  .stacked-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .watch-showcase {
    min-height: 500px;
    transform: scale(.88);
  }

  .privacy-grid {
    padding: 58px 0;
  }

  .final-cta {
    margin-bottom: 52px;
    padding: 26px;
  }

  .skip-link {
    position: fixed;
    left: 12px;
    right: auto;
    text-align: center;
    width: 1px;
    height: 1px;
    margin: -1px;
  }

  .skip-link:focus-visible,
  body.using-keyboard .skip-link:focus-visible,
  body.using-keyboard .skip-link:focus {
    width: auto;
    height: auto;
    margin: 0;
    padding: 10px 16px;
    visibility: visible;
    clip-path: inset(0);
    clip: auto;
    pointer-events: auto;
    opacity: 1;
  }
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

a:focus-visible,
.header-cta:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
button:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
