@import url("https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --surface: rgba(13, 13, 13, 0.95);
  --surface2: rgba(25, 25, 25, 0.85);
  --border: rgba(198, 90, 58, 0.25);
  --accent: #c65a3a;
  --accent-soft: rgba(198, 90, 58, 0.15);
  --accent-glow: rgba(198, 90, 58, 0.4);
  --text: #e8e4df;
  --text-muted: #a09890;
  --radius: 4px;
  --radius-lg: 14px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--border);
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable both-edges;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Share Tech Mono", monospace;
  background:
    radial-gradient(circle at 20% -20%, rgba(198, 90, 58, 0.28), transparent 36%),
    linear-gradient(180deg, rgba(198, 90, 58, 0.04), rgba(0, 0, 0, 0.82) 48%),
    var(--bg);
  color: var(--text);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.36) 100%);
}

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

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  background: transparent;
}

.nav-shell {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 92px;
}

.nav-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(198, 90, 58, 0.24);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.75));
  backdrop-filter: blur(14px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(198, 90, 58, 0.1),
    0 0 20px rgba(198, 90, 58, 0.14);
}

.nav-pill::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(130deg, rgba(198, 90, 58, 0.28), rgba(198, 90, 58, 0.05));
  opacity: 0.65;
  z-index: -1;
}

.nav-link {
  border: 1px solid rgba(198, 90, 58, 0.08);
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  border-color: var(--accent);
  background: rgba(198, 90, 58, 0.16);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(198, 90, 58, 0.2);
}

.nav-link-accent {
  border-color: rgba(198, 90, 58, 0.5);
  color: var(--accent);
  background: rgba(198, 90, 58, 0.14);
}

.hero {
  position: relative;
  padding: 74px 0 34px;
  --hero-scroll-progress: 0;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: min(1040px, 96vw);
  height: 360px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(198, 90, 58, 0.07), rgba(12, 12, 12, 0.88) 34%, rgba(9, 9, 9, 0.78) 100%);
  border: 1px solid rgba(198, 90, 58, 0.16);
  z-index: -1;
}

.hero-shell {
  display: grid;
  gap: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 18px;
  align-items: stretch;
}

.hero-grid-single {
  grid-template-columns: 1fr;
}

.dashboard-browser-card {
  border-radius: 18px;
  border: 1px solid rgba(198, 90, 58, 0.28);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(8, 8, 8, 0.92));
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03),
    0 0 24px rgba(198, 90, 58, 0.12);
  min-height: 382px;
  overflow: hidden;
}

.dashboard-browser-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.dashboard-browser-bar {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.12);
  background: rgba(0, 0, 0, 0.34);
}

.browser-controls {
  display: inline-flex;
  gap: 6px;
  margin-right: 4px;
}

.hero-copy {
  border-radius: 18px;
  border: 1px solid rgba(198, 90, 58, 0.2);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.9), rgba(10, 10, 10, 0.84));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-wide {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 28px 42px 96px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(198, 90, 58, 0.76);
}

.browser-tab {
  height: 24px;
  padding: 0 10px;
  border-radius: 7px 7px 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  color: #8f857d;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.35px;
}

.browser-tab.active {
  border-color: rgba(198, 90, 58, 0.22);
  background: rgba(198, 90, 58, 0.1);
  color: #e8dfd8;
}

.browser-actions {
  margin-left: auto;
  display: inline-flex;
  gap: 6px;
}

.browser-actions span {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: rgba(198, 90, 58, 0.35);
}

.browser-nav-arrow {
  color: #91867e;
  font-size: 10px;
  line-height: 1;
}

.browser-url {
  min-width: 0;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(198, 90, 58, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: #aa9f96;
  font-size: 10px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-browser-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  height: calc(100% - 72px);
}

.browser-sidebar {
  border-right: 1px solid rgba(198, 90, 58, 0.12);
  padding: 12px 10px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.sidebar-title {
  color: #b4a79d;
  font-size: 10px;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.sidebar-item {
  height: 24px;
  border-radius: 6px;
  color: #8f857d;
  font-size: 11px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  border: 1px solid transparent;
}

.sidebar-item.active {
  color: #f3cec0;
  border-color: rgba(198, 90, 58, 0.34);
  background: rgba(198, 90, 58, 0.12);
}

.browser-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.browser-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.browser-toolbar-title {
  color: #cec1b6;
  font-size: 11px;
  letter-spacing: 0.45px;
}

.browser-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38d67e;
  box-shadow: 0 0 0 0 rgba(56, 214, 126, 0.75);
  animation: browserLivePulse 1.3s ease-in-out infinite;
}

.browser-desktop-scene {
  position: relative;
  min-height: 236px;
  border-radius: 10px;
  border: 1px solid rgba(198, 90, 58, 0.16);
  background: radial-gradient(circle at 15% 14%, rgba(198, 90, 58, 0.1), rgba(0, 0, 0, 0.78) 55%);
  overflow: hidden;
}

.desktop-browser-window {
  position: absolute;
  inset: 12px 10px 30px 12px;
  border-radius: 10px;
  border: 1px solid rgba(198, 90, 58, 0.2);
  background: rgba(9, 9, 9, 0.84);
}

.desktop-browser-head {
  height: 24px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.15);
  padding: 0 8px;
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
}

.desktop-browser-head span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(198, 90, 58, 0.45);
}

.desktop-browser-head strong {
  margin-left: 6px;
  color: #9f9489;
  font-size: 9px;
  letter-spacing: 0.45px;
  font-weight: 400;
}

.desktop-browser-body {
  height: calc(100% - 24px);
  display: grid;
  grid-template-rows: 1fr 88px;
  gap: 8px;
  padding: 8px;
}

.editor-main {
  min-height: 0;
  display: grid;
  grid-template-columns: 120px 1fr 132px;
  gap: 8px;
}

.editor-project,
.editor-inspector {
  border: 1px solid rgba(198, 90, 58, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 7px 6px;
  display: grid;
  align-content: start;
  gap: 5px;
}

.editor-panel-title {
  margin: 0 0 4px;
  color: #b7aba0;
  font-size: 9px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.editor-preview {
  border: 1px solid rgba(198, 90, 58, 0.16);
  border-radius: 6px;
  background: #050505;
  padding: 6px;
  display: grid;
  grid-template-rows: 20px 1fr;
  gap: 6px;
}

.preview-head {
  border-radius: 4px;
  border: 1px solid rgba(198, 90, 58, 0.16);
  background: rgba(255, 255, 255, 0.03);
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #a99e93;
  font-size: 9px;
  letter-spacing: 0.4px;
}

.preview-frame {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  position: relative;
  background: linear-gradient(160deg, rgba(116, 34, 14, 0.34), rgba(7, 7, 7, 0.9));
  overflow: hidden;
}

.preview-safe {
  position: absolute;
  inset: 10% 11%;
  border: 1px dashed rgba(198, 90, 58, 0.48);
  border-radius: 4px;
}

.preview-subject {
  position: absolute;
  width: 52%;
  height: 44%;
  left: 20%;
  top: 28%;
  border-radius: 6px;
  border: 1px solid rgba(198, 90, 58, 0.6);
  background: rgba(198, 90, 58, 0.16);
  box-shadow: 0 0 18px rgba(198, 90, 58, 0.25);
}

.editor-asset,
.inspector-row {
  display: flex;
  align-items: center;
  min-height: 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 6px;
  color: #8f847b;
  font-size: 9px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.editor-asset.active,
.inspector-row.active {
  color: #f0cfc0;
  border-color: rgba(198, 90, 58, 0.35);
  background: rgba(198, 90, 58, 0.12);
}

.editor-timeline {
  position: relative;
  border: 1px solid rgba(198, 90, 58, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  padding: 6px;
  display: grid;
  grid-template-rows: 10px repeat(3, 18px);
  gap: 4px;
}

.timeline-ruler {
  height: 10px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(198, 90, 58, 0.3), rgba(198, 90, 58, 0.06));
}

.timeline-track {
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(198, 90, 58, 0.14);
  background: rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
}

.timeline-track label {
  color: #978c82;
  font-size: 8px;
  letter-spacing: 0.35px;
  padding-left: 6px;
  border-right: 1px solid rgba(198, 90, 58, 0.12);
}

.timeline-track span {
  position: absolute;
  left: calc(96px + 12%);
  width: 41%;
  top: 3px;
  bottom: 3px;
  border-radius: 2px;
  background: rgba(198, 90, 58, 0.42);
}

.timeline-track:nth-child(3) span {
  left: calc(96px + 24%);
  width: 28%;
}

.timeline-track:nth-child(4) span {
  left: calc(96px + 38%);
  width: 34%;
}

.timeline-playhead {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 61%;
  width: 2px;
  border-radius: 1px;
  background: rgba(255, 226, 148, 0.9);
  box-shadow: 0 0 8px rgba(255, 226, 148, 0.55);
}

.desktop-app-layer {
  position: absolute;
  left: auto;
  right: 12px;
  bottom: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 138px;
  gap: 9px;
  align-items: end;
  width: min(510px, 80%);
}

.browser-demo-panel {
  border: 1px solid rgba(198, 90, 58, 0.3);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.browser-demo-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.22);
}

.browser-demo-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.browser-demo-title {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.45px;
}

.browser-demo-state {
  margin-left: auto;
  border: 1px solid rgba(198, 90, 58, 0.35);
  color: #d8a28d;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 2px;
  text-transform: uppercase;
}

.browser-demo-modelbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.16);
  font-size: 9px;
  color: #b8aea4;
}

.browser-demo-modeldot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #f59e0b;
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.7);
}

.browser-demo-chat {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 94px;
}

.browser-demo-msg {
  border: 1px solid rgba(198, 90, 58, 0.2);
  border-radius: 4px;
  padding: 6px 7px;
  font-size: 10px;
  line-height: 1.35;
}

.browser-demo-msg.user {
  align-self: flex-end;
  max-width: 76%;
  color: #efcdc0;
  background: rgba(198, 90, 58, 0.12);
}

.browser-demo-msg.ai {
  color: #d0c4bb;
  background: rgba(255, 255, 255, 0.03);
  min-height: 40px;
}

.browser-stream-caret {
  margin-left: 2px;
  color: var(--accent);
  animation: mockCaret 0.8s step-end infinite;
}

.browser-demo-input {
  margin: 0 8px 8px;
  border: 1px solid rgba(198, 90, 58, 0.22);
  border-radius: 4px;
  padding: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
  font-size: 9px;
}

.browser-demo-mode {
  border: 1px solid rgba(198, 90, 58, 0.28);
  color: #a79b91;
  border-radius: 2px;
  padding: 2px 4px;
}

.browser-demo-placeholder {
  color: #777068;
}

.browser-demo-send {
  color: var(--accent);
}

.browser-widget-panel {
  border: 1px solid rgba(198, 90, 58, 0.34);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.92);
  padding: 8px;
  min-height: 126px;
  box-shadow: 0 0 0 1px rgba(198, 90, 58, 0.2);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.browser-widget-top {
  display: flex;
  align-items: center;
  gap: 7px;
}

.browser-widget-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.browser-widget-title {
  margin: 0;
  color: #c4b7ad;
  font-size: 9px;
  letter-spacing: 0.42px;
}

.browser-widget-status {
  margin: 1px 0 0;
  color: #8df4ba;
  font-size: 9px;
  text-transform: uppercase;
}

.browser-widget-status[data-state="executing"] { color: #f6a27a; }
.browser-widget-status[data-state="waiting_user"] { color: #67e8f9; }

.browser-widget-wave {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.browser-widget-wave span {
  width: 2px;
  height: 10px;
  border-radius: 2px;
  background: rgba(74, 222, 128, 0.9);
  animation: waveListen 0.92s ease-in-out infinite;
}

.browser-widget-wave span:nth-child(2) { animation-delay: 0.12s; }
.browser-widget-wave span:nth-child(3) { animation-delay: 0.24s; }
.browser-widget-wave span:nth-child(4) { animation-delay: 0.36s; }

.browser-widget-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.browser-widget-actions span {
  border-radius: 7px;
  border: 1px solid rgba(198, 90, 58, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #aaa094;
  font-size: 9px;
  text-align: center;
  padding: 4px 0;
}

.browser-widget-panel.listening {
  border-color: rgba(198, 90, 58, 0.5);
  box-shadow: 0 0 0 1px rgba(198, 90, 58, 0.25), 0 0 12px rgba(198, 90, 58, 0.18);
}

.browser-widget-panel.executing {
  border-color: rgba(246, 162, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(246, 162, 122, 0.25), 0 0 13px rgba(246, 162, 122, 0.2);
}

.browser-widget-panel.waiting_user {
  border-color: rgba(103, 232, 249, 0.52);
  box-shadow: 0 0 0 1px rgba(103, 232, 249, 0.22), 0 0 13px rgba(103, 232, 249, 0.2);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3.2px;
  font-size: 15px;
  line-height: 1;
  opacity: 0.95;
}

.hero-mini-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  margin: 2px auto 16px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(198, 90, 58, 0.3));
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-wrap: balance;
}

.lead {
  margin: 14px 0 0;
  color: #b7afa8;
  font-size: 16px;
  line-height: 1.5;
  max-width: 64ch;
  margin-inline: auto;
}

body.hero-entrance-pending .hero {
  pointer-events: none;
}

body.hero-entrance-pending .nav-pill {
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  filter: none;
}

body.hero-entrance-pending .nav-link {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  filter: none;
  text-shadow: none;
}

body.hero-entrance-pending .hero::before {
  opacity: 0;
  transform: translateX(-50%) translateY(20px) scale(0.985);
  filter: blur(6px);
}

body.hero-entrance-pending .hero-copy {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.992);
  filter: blur(4px);
}

body.hero-entrance-pending .hero-copy .eyebrow,
body.hero-entrance-pending .hero-copy .hero-mini-logo,
body.hero-entrance-pending .hero-copy h1,
body.hero-entrance-pending .hero-copy .lead {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: none;
}

body.hero-entrance-pending .hero-downloads {
  opacity: 0;
  transform: translate3d(0, 32px, 0) scale(0.985);
  filter: blur(5px);
}

body.hero-entrance-pending .download-card {
  opacity: 0;
  filter: blur(6px);
}

body.hero-entrance-started .nav-pill {
  animation: heroNavIn 1.35s cubic-bezier(0.22, 0.61, 0.36, 1) 0ms forwards;
}

body.hero-entrance-started .nav-link:nth-child(1) {
  animation: heroNavItemIn 1.05s ease-out 80ms forwards;
}

body.hero-entrance-started .nav-link:nth-child(2) {
  animation: heroNavItemIn 1.05s ease-out 180ms forwards;
}

body.hero-entrance-started .nav-link:nth-child(3) {
  animation: heroNavItemIn 1.05s ease-out 280ms forwards;
}

body.hero-entrance-started .nav-link:nth-child(4) {
  animation: heroNavItemIn 1.05s ease-out 380ms forwards;
}

body.hero-entrance-started .hero::before {
  animation: heroBackLayerIn 1.08s cubic-bezier(0.22, 0.61, 0.36, 1) 760ms forwards;
}

body.hero-entrance-started .hero-copy {
  animation: heroMidLayerIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 900ms forwards;
}

body.hero-entrance-started .hero-copy .eyebrow {
  animation: heroLayerIn 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 980ms forwards;
}

body.hero-entrance-started .hero-copy .hero-mini-logo {
  animation: heroLayerIn 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 1180ms forwards;
}

body.hero-entrance-started .hero-copy h1 {
  animation: heroLayerIn 1.22s cubic-bezier(0.22, 0.61, 0.36, 1) 1380ms forwards;
}

body.hero-entrance-started .hero-copy .lead {
  animation: heroLayerIn 1.22s cubic-bezier(0.22, 0.61, 0.36, 1) 1640ms forwards;
}

body.hero-entrance-started .hero-downloads {
  animation: heroLayerIn 1.18s cubic-bezier(0.22, 0.61, 0.36, 1) 1860ms forwards;
}

body.hero-entrance-started .download-card-1 {
  animation: heroCardInLeft 1.08s cubic-bezier(0.16, 0.84, 0.34, 1) 2120ms forwards;
}

body.hero-entrance-started .download-card-2 {
  animation: heroCardInUp 1.12s cubic-bezier(0.16, 0.84, 0.34, 1) 2280ms forwards;
}

body.hero-entrance-started .download-card-3 {
  animation: heroCardInRight 1.08s cubic-bezier(0.16, 0.84, 0.34, 1) 2120ms forwards;
}

body.hero-entrance-done .hero {
  pointer-events: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.hero-downloads {
  margin-top: -68px;
  padding: 0 10px 6px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  z-index: 2;
}

body.hero-scroll-motion-enabled.hero-entrance-done .hero .hero-copy,
body.hero-scroll-motion-enabled.hero-entrance-done .hero .hero-downloads {
  will-change: transform, opacity, filter;
  transition:
    transform 0.44s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.34s ease,
    filter 0.34s ease;
}

body.hero-scroll-motion-enabled.hero-entrance-done .hero.is-scrolled .hero-copy {
  transform: translate3d(0, calc(var(--hero-scroll-progress) * -34px), 0) scale(calc(1 - var(--hero-scroll-progress) * 0.04));
  opacity: calc(1 - var(--hero-scroll-progress) * 0.34);
}

body.hero-scroll-motion-enabled.hero-entrance-done .hero.is-scrolled .hero-downloads {
  transform: translate3d(0, calc(var(--hero-scroll-progress) * -62px), 0) scale(calc(1 - var(--hero-scroll-progress) * 0.08));
  opacity: calc(1 - var(--hero-scroll-progress) * 0.5);
}

body.hero-scroll-motion-enabled.hero-entrance-done .hero[data-scroll-dir="down"] .hero-copy,
body.hero-scroll-motion-enabled.hero-entrance-done .hero[data-scroll-dir="down"] .hero-downloads {
  filter: saturate(0.92);
}

body.hero-scroll-motion-enabled.hero-entrance-done .hero[data-scroll-dir="up"] .hero-copy,
body.hero-scroll-motion-enabled.hero-entrance-done .hero[data-scroll-dir="up"] .hero-downloads {
  filter: saturate(1);
}

.hero-downloads::before {
  content: none;
}

.hero-downloads-label {
  margin: 0 0 2px;
  font-size: 12px;
  letter-spacing: 1.3px;
  color: var(--accent);
  text-transform: uppercase;
  text-align: center;
}

.hero-downloads-note {
  margin: 22px 0 0;
  font-size: 11px;
  color: #90867e;
  text-align: center;
}

.btn {
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 13px;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.btn-primary {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.btn-primary:hover {
  background: rgba(198, 90, 58, 0.22);
  box-shadow: 0 0 12px rgba(198, 90, 58, 0.22);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

.background-eye-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0.34;
  transition: opacity 0.9s ease, transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.9s ease;
}

.background-eye-layer::before {
  content: "";
  position: absolute;
  width: min(94vw, 980px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: repeating-conic-gradient(
    from -12deg,
    rgba(198, 90, 58, 0.42) 0deg 1.5deg,
    transparent 1.5deg 9deg
  );
  mask: radial-gradient(
    circle,
    transparent 0 24%,
    rgba(0, 0, 0, 0.96) 34%,
    rgba(0, 0, 0, 0.8) 56%,
    transparent 73%
  );
  opacity: 0.9;
  filter: drop-shadow(0 0 24px rgba(198, 90, 58, 0.32));
  animation: emblemSpin 26s linear infinite;
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

.background-eye-layer::after {
  content: "";
  position: absolute;
  width: min(88vw, 900px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 42%, rgba(198, 90, 58, 0.24) 42.4% 42.9%, transparent 43.2%),
    radial-gradient(circle, transparent 0 53%, rgba(198, 90, 58, 0.18) 53.4% 53.8%, transparent 54.1%),
    radial-gradient(circle, transparent 0 64%, rgba(198, 90, 58, 0.14) 64.3% 64.7%, transparent 65%);
  opacity: 0.92;
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

.background-eye-logo {
  width: min(86vw, 860px);
  height: auto;
  image-rendering: pixelated;
  filter:
    drop-shadow(0 0 34px rgba(198, 90, 58, 0.38))
    drop-shadow(0 0 72px rgba(198, 90, 58, 0.26));
  position: relative;
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.9s ease, opacity 0.9s ease;
}

body.intro-active .background-eye-layer {
  opacity: 0.88;
  filter: saturate(1.2);
}

body.intro-active .background-eye-layer::before {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 28px rgba(198, 90, 58, 0.5));
  animation: emblemSpin 26s linear infinite, introFlare 1s ease-in-out infinite;
}

body.intro-active .background-eye-layer::after {
  opacity: 1;
  transform: scale(1.04);
  filter: brightness(1.3);
}

body.intro-active .background-eye-logo {
  transform: translate3d(0, -8px, 0) scale(1.16);
  filter:
    drop-shadow(0 0 40px rgba(198, 90, 58, 0.45))
    drop-shadow(0 0 78px rgba(198, 90, 58, 0.3));
}

body.intro-flash .background-eye-layer::before,
body.intro-flash .background-eye-layer::after {
  filter: brightness(1.55) saturate(1.25);
}

body.intro-flash .background-eye-logo {
  transform: translate3d(0, -14px, 0) scale(1.23);
}

body.intro-settle .background-eye-layer {
  opacity: 0.34;
  filter: saturate(1);
}

body.intro-settle .background-eye-layer::before,
body.intro-settle .background-eye-layer::after {
  transform: scale(1);
  filter: none;
}

body.intro-settle .background-eye-logo {
  transform: translate3d(0, 0, 0) scale(1);
}

body.intro-block-ui {
  overflow: hidden;
}

body.intro-block-ui .site-header,
body.intro-block-ui main,
body.intro-block-ui .site-footer,
body.intro-block-ui .cursor-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 14px, 0) scale(0.985);
}

body.content-entering .site-header,
body.content-entering main,
body.content-entering .site-footer {
  opacity: 0.24;
  visibility: visible;
  pointer-events: none;
  transform: translate3d(0, 10px, 0) scale(0.995);
}

body.intro-finished .site-header,
body.intro-finished main,
body.intro-finished .site-footer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0.85s step-end;
}

.features,
.security,
.configure {
  padding: 100px 0;
  position: relative;
}

/* Subtle separator between sections */
.features::after,
.configure::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 80vw);
  height: 1px;
  background: radial-gradient(circle, rgba(198, 90, 58, 0.25) 0%, transparent 100%);
}

.features {
  background: radial-gradient(circle at 20% 50%, rgba(198, 90, 58, 0.03), transparent 40%);
}

.configure {
  background: radial-gradient(circle at 80% 50%, rgba(198, 90, 58, 0.03), transparent 40%);
}

.security {
  background: radial-gradient(circle at 50% 100%, rgba(198, 90, 58, 0.05), transparent 40%);
}

.scroll-reveal-enabled.reveal-active .scroll-section .reveal-item {
  --reveal-x: 0px;
  --reveal-y: 34px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(0.99);
  will-change: transform, opacity;
  transition:
    transform 0.88s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.74s ease;
  transition-delay: 0ms;
}

.scroll-reveal-enabled.reveal-active .scroll-section .reveal-item.from-left {
  --reveal-x: -52px;
  --reveal-y: 18px;
}

.scroll-reveal-enabled.reveal-active .scroll-section .reveal-item.from-right {
  --reveal-x: 52px;
  --reveal-y: 18px;
}

.scroll-reveal-enabled.reveal-active .scroll-section .reveal-item.from-up {
  --reveal-x: 0px;
  --reveal-y: -42px;
}

.scroll-reveal-enabled.reveal-active .scroll-section[data-scroll-dir="up"] .reveal-item.from-up {
  --reveal-y: 46px;
}

.scroll-reveal-enabled.reveal-active .scroll-section[data-scroll-dir="up"] .reveal-item.from-left {
  --reveal-x: 46px;
}

.scroll-reveal-enabled.reveal-active .scroll-section[data-scroll-dir="up"] .reveal-item.from-right {
  --reveal-x: -46px;
}

.scroll-reveal-enabled.reveal-active .scroll-section.in-view .reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--reveal-delay, 0ms);
}

.scroll-reveal-enabled.reveal-active .scroll-section:not(.in-view)[data-scroll-dir="down"] .reveal-item {
  opacity: 0;
  transform: translate3d(0, -30px, 0) scale(0.99);
  transition-delay: 0ms;
}

.scroll-reveal-enabled.reveal-active .scroll-section:not(.in-view)[data-scroll-dir="up"] .reveal-item {
  opacity: 0;
  transform: translate3d(0, 30px, 0) scale(0.99);
  transition-delay: 0ms;
}

.scroll-reveal-enabled.reveal-active .features .features-title {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.99);
  transition: transform 0.86s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.76s ease;
}

.scroll-reveal-enabled.reveal-active .features .feature-card {
  --feature-y: 34px;
  opacity: 0;
  transform: translate3d(0, var(--feature-y), 0) scale(0.985);
  transition: transform 0.92s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.8s ease;
  transition-delay: 0ms;
}

.scroll-reveal-enabled.reveal-active .features[data-scroll-dir="up"] .feature-card {
  --feature-y: -34px;
}

.scroll-reveal-enabled.reveal-active .features.in-view .features-title {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-reveal-enabled.reveal-active .features.in-view .feature-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(1) { transition-delay: 120ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(2) { transition-delay: 230ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(3) { transition-delay: 340ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(4) { transition-delay: 450ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(5) { transition-delay: 560ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(6) { transition-delay: 670ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(7) { transition-delay: 780ms; }
.scroll-reveal-enabled.reveal-active .features.in-view .feature-card:nth-child(8) { transition-delay: 890ms; }

.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(1) { transition-delay: 890ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(2) { transition-delay: 780ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(3) { transition-delay: 670ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(4) { transition-delay: 560ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(5) { transition-delay: 450ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(6) { transition-delay: 340ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(7) { transition-delay: 230ms; }
.scroll-reveal-enabled.reveal-active .features.in-view[data-scroll-dir="up"] .feature-card:nth-child(8) { transition-delay: 120ms; }

h2 {
  margin: 0;
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 24px;
}

.section-lead {
  margin: 10px 0 18px;
  color: var(--text-muted);
  font-size: 14px;
}

.features-shell {
  position: relative;
  border: 1px solid rgba(198, 90, 58, 0.22);
  border-radius: 26px;
  padding: 24px 22px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.features-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(198, 90, 58, 0.16), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(198, 90, 58, 0.1), transparent 32%);
  pointer-events: none;
}

.features-shell > .features-title,
.feature-grid {
  position: relative;
  z-index: 1;
}

.features-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  padding: 10px 24px;
  text-align: center;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 1.2px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f7d5c8, #e9a387 48%, #cc6f4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(198, 90, 58, 0.25);
}

.features-title::before,
.features-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.features-title::before {
  top: -2px;
  width: min(280px, 82%);
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 90, 58, 0), rgba(198, 90, 58, 0.62), rgba(198, 90, 58, 0));
}

.features-title::after {
  bottom: -8px;
  width: min(220px, 72%);
  height: 2px;
  background: linear-gradient(90deg, rgba(198, 90, 58, 0), rgba(198, 90, 58, 0.84), rgba(198, 90, 58, 0));
  box-shadow: 0 0 14px rgba(198, 90, 58, 0.38);
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
  border: 1px solid rgba(198, 90, 58, 0.3);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.26), rgba(10, 10, 10, 0.14));
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  padding: 15px 15px 13px;
  min-height: 190px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  grid-column: span 2;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(198, 90, 58, 0.04), rgba(198, 90, 58, 0.52), rgba(198, 90, 58, 0.04));
  opacity: 0.7;
}

.feature-card-highlight {
  grid-column: span 3;
  border-color: rgba(198, 90, 58, 0.42);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.3), rgba(12, 12, 12, 0.16));
  box-shadow: 0 0 0 1px rgba(198, 90, 58, 0.1), 0 12px 24px rgba(0, 0, 0, 0.28);
  min-height: 226px;
}

.feature-card-secondary {
  min-height: 194px;
}

.feature-card:hover {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.2), rgba(10, 10, 10, 0.08));
  backdrop-filter: blur(16px) saturate(122%);
  -webkit-backdrop-filter: blur(16px) saturate(122%);
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(198, 90, 58, 0.7);
  box-shadow: 0 0 22px rgba(198, 90, 58, 0.2), 0 12px 22px rgba(0, 0, 0, 0.34);
}

.feature-card-linefx {
  position: absolute;
  inset: -34% -14% auto auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.34;
  background: repeating-conic-gradient(
    from -16deg,
    rgba(198, 90, 58, 0.48) 0deg 1.2deg,
    transparent 1.2deg 8.4deg
  );
  mask: radial-gradient(circle, transparent 0 24%, rgba(0, 0, 0, 0.95) 32% 54%, transparent 62%);
  transform: rotate(10deg);
}

.feature-card-highlight .feature-card-linefx {
  opacity: 0.72;
  inset: -40% -12% auto auto;
  width: 260px;
  height: 260px;
  background:
    repeating-conic-gradient(
      from -18deg,
      rgba(0, 0, 0, 0.75) 0deg 1.6deg,
      transparent 1.6deg 6.2deg
    ),
    repeating-conic-gradient(
      from -10deg,
      rgba(198, 90, 58, 0.78) 0deg 1.2deg,
      transparent 1.2deg 8.2deg
    );
  mask: radial-gradient(circle, transparent 0 22%, rgba(0, 0, 0, 0.97) 30% 58%, transparent 66%);
  transform: rotate(8deg);
}

.feature-card:hover .feature-card-linefx {
  opacity: 0.5;
}

.feature-card-highlight:hover .feature-card-linefx {
  opacity: 0.86;
}

.feature-card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.feature-card-title {
  margin: 0;
  font-size: 22px;
  color: #f0e9e3;
  text-align: center;
  letter-spacing: 0.5px;
}

.feature-card-secondary .feature-card-title {
  font-size: 19px;
}

.feature-card-description {
  margin: 10px 0 0;
  color: #b8aea6;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.feature-card-secondary .feature-card-description {
  font-size: 14px;
}

.feature-card-divider {
  margin: 12px auto 0;
  display: block;
  height: 1px;
  width: 82%;
  background: linear-gradient(90deg, rgba(198, 90, 58, 0.26), rgba(198, 90, 58, 0));
}

.feature-meta-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.feature-meta-list li {
  padding: 5px 10px;
  border: 1px solid rgba(198, 90, 58, 0.28);
  border-radius: 999px;
  font-size: 12px;
  color: #d29a84;
  background: rgba(198, 90, 58, 0.09);
}

.configure-shell {
  position: relative;
  border: 1px solid rgba(198, 90, 58, 0.28);
  border-radius: 32px;
  padding: 42px 36px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.45), rgba(8, 8, 8, 0.28));
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.configure-title {
  text-align: center;
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, #f7d5c8, #e9a387 48%, #cc6f4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(198, 90, 58, 0.25);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.configure-subtitle {
  margin: 14px auto 32px;
  max-width: 66ch;
  text-align: center;
  color: #c7bcb4;
  font-size: 16px;
  line-height: 1.6;
}

.configure-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.configure-steps {
  display: grid;
  gap: 12px;
}

.configure-step-btn {
  border: 1px solid rgba(198, 90, 58, 0.28);
  background: rgba(10, 10, 10, 0.45);
  color: #d5cac1;
  border-radius: 16px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.configure-step-btn span {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(198, 90, 58, 0.4);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #f6a27a;
  background: rgba(198, 90, 58, 0.08);
}

.configure-step-btn strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.configure-step-btn.active,
.configure-step-btn:hover {
  border-color: rgba(198, 90, 58, 0.75);
  background: rgba(198, 90, 58, 0.18);
  color: var(--text);
  transform: translateX(4px);
  box-shadow: 0 0 16px rgba(198, 90, 58, 0.15);
}

.configure-preview {
  border: 1px solid rgba(198, 90, 58, 0.32);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.55), rgba(8, 8, 8, 0.35));
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.configure-preview-head {
  display: grid;
  gap: 8px;
}

.configure-step-index {
  color: #e9a387;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.configure-preview-head strong {
  font-size: 28px;
  color: #fdf6f0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.configure-step-description {
  margin: 0;
  color: #d0c4bb;
  font-size: 17px;
  line-height: 1.6;
}

.configure-step-list {
  margin: 8px 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.configure-step-list li {
  position: relative;
  padding-left: 24px;
  color: #e8ddd5;
  font-size: 15px;
  line-height: 1.5;
}

.configure-step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6a27a;
  box-shadow: 0 0 10px rgba(198, 90, 58, 0.6);
}

.configure-step-tip {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 90, 58, 0.25);
  color: #f6a27a;
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}

.security-shell {
  position: relative;
  border: 1px solid rgba(198, 90, 58, 0.28);
  border-radius: 32px;
  padding: 42px 36px;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.45), rgba(8, 8, 8, 0.28));
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.security-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 10%, rgba(198, 90, 58, 0.14), transparent 34%),
    radial-gradient(circle at 12% 16%, rgba(198, 90, 58, 0.08), transparent 30%);
}

.security-shell > * {
  position: relative;
  z-index: 1;
}

.security-title {
  text-align: center;
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 48px);
  background: linear-gradient(180deg, #f7d5c8, #e9a387 48%, #cc6f4d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(198, 90, 58, 0.25);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.security-intro {
  margin: 14px auto 32px;
  max-width: 62ch;
  color: #c7bcb4;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.security-info-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.security-info-block {
  border: 1px solid rgba(198, 90, 58, 0.32);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.55), rgba(8, 8, 8, 0.35));
  padding: 28px 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.security-info-block:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 90, 58, 0.68);
  box-shadow: 0 0 18px rgba(198, 90, 58, 0.16), 0 14px 24px rgba(0, 0, 0, 0.36);
}

.security-info-block h3 {
  margin: 0 0 16px;
  font-size: 24px;
  color: #fdf6f0;
  line-height: 1.2;
  letter-spacing: 0.4px;
}

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

.security-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.55;
  color: #e0d5cd;
}

.security-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f6a27a;
  box-shadow: 0 0 10px rgba(198, 90, 58, 0.6);
}

.security-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.security-github-btn {
  padding-inline: 18px;
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.hero-download-grid {
  min-width: 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, 168px);
  justify-content: center;
  gap: 18px;
  align-items: start;
  position: relative;
  padding-bottom: 10px;
}

.hero-download-grid::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);
  width: min(620px, 88%);
  height: 82px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at center, rgba(198, 90, 58, 0.24), rgba(198, 90, 58, 0));
  filter: blur(14px);
  opacity: 0.7;
}

.hero-download-grid > * {
  position: relative;
  z-index: 1;
}

.hero-downloads-minimal .download-grid {
  gap: 12px;
}

.hero-downloads-minimal .download-link {
  min-width: 0;
  width: 168px;
  text-align: center;
  border-radius: 14px;
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.4px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.95), rgba(9, 9, 9, 0.92));
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: 168px;
  min-height: 164px;
  border-color: rgba(198, 90, 58, 0.38);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.download-card-1,
.download-card-3 {
  margin-top: -20px;
}

.download-card-2 {
  margin-top: 18px;
}

.download-card-icon {
  width: 30px;
  height: 30px;
  color: #e8ddd5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.download-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.download-card-label {
  color: #d8cdc4;
  font-size: 13px;
  letter-spacing: 0.7px;
}

.download-card-download-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: transform 0.18s ease, opacity 0.18s ease, color 0.18s ease;
}

.download-card-download-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.download-link {
  border: 1px solid rgba(198, 90, 58, 0.28);
  border-radius: var(--radius);
  min-width: 164px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--text);
  background: rgba(9, 9, 9, 0.8);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.download-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(198, 90, 58, 0.11);
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(198, 90, 58, 0.22);
}

.download-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(198, 90, 58, 0.7);
  box-shadow: 0 0 22px rgba(198, 90, 58, 0.2), 0 12px 22px rgba(0, 0, 0, 0.34);
}

.download-card:hover .download-card-download-icon {
  transform: translateY(1px) scale(1.08);
  opacity: 1;
  color: #f6a27a;
}

.hero-visual {
  width: min(900px, 94vw);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
  align-items: end;
}

.os-scene {
  position: absolute;
  left: -22px;
  right: -22px;
  top: -28px;
  bottom: 42px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.52;
}

.os-window {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(198, 90, 58, 0.18);
  border-radius: 12px;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(2px);
  overflow: hidden;
}

.os-window-bar {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(198, 90, 58, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.os-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(198, 90, 58, 0.45);
}

.os-title {
  margin-left: 8px;
  font-size: 10px;
  color: #8b857f;
}

.os-window-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  height: calc(100% - 26px);
}

.os-sidebar {
  border-right: 1px solid rgba(198, 90, 58, 0.1);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.os-sidebar span {
  display: block;
  height: 12px;
  border-radius: 3px;
  background: rgba(198, 90, 58, 0.14);
}

.os-main {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.os-row {
  display: flex;
  gap: 9px;
}

.os-block {
  display: inline-block;
  height: 44px;
  flex: 1;
  border-radius: 5px;
  border: 1px solid rgba(198, 90, 58, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.os-block.small {
  flex: 0.62;
}

.os-block.wide {
  width: 100%;
  height: 60px;
}

.os-target {
  margin-top: auto;
  width: 188px;
  height: 52px;
  border-radius: 7px;
  border: 1px solid rgba(198, 90, 58, 0.5);
  background: rgba(198, 90, 58, 0.14);
  box-shadow: 0 0 0 2px rgba(198, 90, 58, 0.15), 0 0 20px rgba(198, 90, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: osTargetPulse 2s ease-in-out infinite;
}

.os-target-label {
  font-size: 11px;
  color: #f2c5b4;
}

.mock-chat-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #000;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 346px;
  position: relative;
  z-index: 1;
}

.mock-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 2px solid var(--border);
  background: rgba(13, 13, 13, 0.96);
}

.mock-app-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mock-app-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mock-app-brand span {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.7px;
}

.mock-app-status {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 3px 8px;
}

.mock-app-status[data-state="listening"] {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
}

.mock-app-status[data-state="executing"] {
  color: #f6a27a;
}

.mock-app-status[data-state="evaluating"] {
  color: #8ab4ff;
}

.mock-app-status[data-state="waiting_user"] {
  color: #67e8f9;
}

.mock-app-actions {
  display: inline-flex;
  gap: 6px;
  color: var(--text-muted);
  font-size: 11px;
}

.mock-app-actions span {
  border: 1px solid var(--border);
  border-radius: 2px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mock-model-bar {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(198, 90, 58, 0.04);
}

.mock-model-badge {
  font-size: 9px;
  color: var(--accent);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.mock-provider-dot {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.8);
}

.mock-model-name {
  font-size: 11px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-clear-btn {
  color: var(--text-muted);
  font-size: 11px;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 3px 6px;
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease;
}

.mock-listening-row {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(74, 222, 128, 0.22);
  background: rgba(74, 222, 128, 0.08);
}

.mock-listening-row.active {
  display: flex;
}

.mock-mic-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.65);
  animation: micBlink 1s ease-in-out infinite;
}

.mock-listening-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #8df4ba;
  letter-spacing: 0.8px;
}

.mock-wave {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.mock-wave span {
  width: 2px;
  height: 8px;
  border-radius: 2px;
  background: rgba(74, 222, 128, 0.86);
  animation: waveListen 0.9s ease-in-out infinite;
}

.mock-wave span:nth-child(2) { animation-delay: 0.12s; }
.mock-wave span:nth-child(3) { animation-delay: 0.24s; }
.mock-wave span:nth-child(4) { animation-delay: 0.36s; }
.mock-wave span:nth-child(5) { animation-delay: 0.48s; }

.mock-chat-body {
  min-height: 130px;
  padding: 12px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: flex-end;
}

.mock-bubble {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.mock-bubble.user {
  align-self: flex-end;
  max-width: 65%;
  background: rgba(198, 90, 58, 0.12);
}

.mock-bubble.ai {
  align-self: flex-start;
  max-width: 86%;
  background: rgba(255, 255, 255, 0.04);
  min-height: 44px;
}

.mock-stream-caret {
  margin-left: 2px;
  color: var(--accent);
  animation: mockCaret 0.8s step-end infinite;
}

.mock-plan-panel {
  margin: 0 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
}

.mock-plan-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: var(--text);
}

#mock-plan-goal {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#mock-plan-progress {
  color: var(--accent);
}

.mock-plan-progress-track {
  margin-top: 6px;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: rgba(198, 90, 58, 0.16);
  overflow: hidden;
}

.mock-plan-progress-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #c65a3a, #f6a27a);
  transition: width 0.45s ease;
}

.mock-plan-step {
  margin: 7px 0 0;
  font-size: 10px;
  color: var(--text-muted);
  text-align: left;
}

.mock-input-row {
  margin: 10px 12px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: rgba(13, 13, 13, 0.9);
}

.mock-input-row.listening {
  border-color: rgba(74, 222, 128, 0.45);
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.22);
}

.mock-mode-pill {
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 10px;
  border-radius: 3px;
  padding: 4px 7px;
}

.mock-input-text {
  font-size: 11px;
  color: #7f7871;
}

.mock-send-btn {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent);
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

@keyframes emblemSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes introFlare {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes browserLivePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(56, 214, 126, 0.72);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(56, 214, 126, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(56, 214, 126, 0);
  }
}

@keyframes mockCaret {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes waveListen {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1.35);
    opacity: 1;
  }
}

@keyframes micBlink {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

@keyframes osTargetPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(198, 90, 58, 0.15), 0 0 20px rgba(198, 90, 58, 0.25);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(198, 90, 58, 0.18), 0 0 28px rgba(198, 90, 58, 0.34);
  }
}

@keyframes heroNavIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -18px, 0);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@keyframes heroNavItemIn {
  0% {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    filter: none;
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
    text-shadow: none;
  }
}

@keyframes heroBackLayerIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.985);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroMidLayerIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@keyframes heroLayerIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
  }
}

@keyframes heroCardInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-88px, 24px, 0) scale(0.9) rotate(-4deg);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroCardInRight {
  0% {
    opacity: 0;
    transform: translate3d(88px, 24px, 0) scale(0.9) rotate(4deg);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes heroCardInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 66px, 0) scale(0.9);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes featureLayerIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes featureCardInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-54px, 28px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes featureCardInRight {
  0% {
    opacity: 0;
    transform: translate3d(54px, 28px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes featureCardInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 44px, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.mock-widget {
  border: 1px solid rgba(198, 90, 58, 0.34);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.92);
  padding: 10px;
  min-height: 128px;
  box-shadow: 0 0 0 1px rgba(198, 90, 58, 0.22);
  position: relative;
  z-index: 1;
}

.mock-widget-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-widget-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mock-widget-status {
  margin: 0;
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent);
}

.mock-widget-goal {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--text);
}

.mock-widget-actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mock-widget-actions span {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-muted);
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.16s ease, border-color 0.16s ease, color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.mock-app-actions span,
.mock-clear-btn,
.mock-send-btn,
.mock-widget-actions span {
  cursor: pointer;
}

.btn:hover,
.btn.hover-sync,
.download-link:hover,
.download-link.hover-sync,
.mock-app-actions span:hover,
.mock-app-actions span.hover-sync,
.mock-clear-btn:hover,
.mock-clear-btn.hover-sync,
.mock-send-btn:hover,
.mock-send-btn.hover-sync,
.mock-widget-actions span:hover,
.mock-widget-actions span.hover-sync {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(198, 90, 58, 0.12);
  transform: translateY(-1px);
}

.mock-send-btn:hover,
.mock-send-btn.hover-sync,
.mock-widget-actions span:hover,
.mock-widget-actions span.hover-sync {
  box-shadow: 0 0 12px rgba(198, 90, 58, 0.18);
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.9);
}

.footer-inner {
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.cursor-wrap {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.ai-cursor {
  position: absolute;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    left 0.18s cubic-bezier(0.22, 0.61, 0.36, 1),
    top 0.18s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.2s ease;
  will-change: left, top, opacity;
}

.ai-cursor.visible {
  opacity: 1;
}

.cursor-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(198, 90, 58, 0.45);
  animation: ringPulse 2s ease-in-out infinite;
}

.cursor-dot {
  width: 22px;
  height: 22px;
  background: radial-gradient(circle at 35% 35%, #f6a27a, #c65a3a);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(198, 90, 58, 0.3),
    0 0 20px rgba(198, 90, 58, 0.75),
    0 0 40px rgba(198, 90, 58, 0.35);
  animation: dotPulse 1.8s ease-in-out infinite;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.ai-cursor.interactive .cursor-ring {
  border-color: rgba(246, 162, 122, 0.75);
}

.ai-cursor.interactive .cursor-dot {
  transform: scale(1.08);
  box-shadow:
    0 0 0 3px rgba(198, 90, 58, 0.38),
    0 0 24px rgba(198, 90, 58, 0.85),
    0 0 46px rgba(198, 90, 58, 0.42);
}

.ripple,
.ripple2 {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.ripple {
  border: 2px solid rgba(198, 90, 58, 0.8);
}

.ripple2 {
  border: 2px solid rgba(246, 162, 122, 0.6);
}

.ripple.animate {
  animation: rippleOut 0.6s ease-out forwards;
}

.ripple2.animate {
  animation: rippleOut 0.6s ease-out 0.15s forwards;
}

.cursor-label {
  position: absolute;
  top: 28px;
  left: 50%;
  white-space: nowrap;
  background: rgba(8, 9, 18, 0.92);
  border: 1px solid rgba(198, 90, 58, 0.45);
  color: #f6a27a;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ai-cursor.visible .cursor-label {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0.12s;
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.2;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(198, 90, 58, 0.3), 0 0 20px rgba(198, 90, 58, 0.65);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(198, 90, 58, 0.15), 0 0 30px rgba(198, 90, 58, 0.95);
  }
}

@keyframes rippleOut {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .nav-pill {
    width: min(540px, 92vw);
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 6px;
    border-radius: 14px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-column: 1 / -1;
  }

  .features-shell {
    border-radius: 18px;
    padding: 20px 14px;
  }

  .security-shell {
    border-radius: 18px;
    padding: 20px 14px;
  }

  .configure-shell {
    border-radius: 22px;
    padding: 24px 18px;
  }

  .configure-panel {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .configure-step-btn {
    padding: 12px 14px;
    grid-template-columns: 24px 1fr;
  }

  .configure-preview {
    padding: 20px;
  }

  .configure-preview-head strong {
    font-size: 22px;
  }

  .configure-step-description {
    font-size: 15px;
  }

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

  .download-grid {
    justify-content: center;
  }

  .hero-download-grid {
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
  }

  .hero-download-grid::before {
    width: min(300px, 90%);
    height: 66px;
    bottom: 2px;
    opacity: 0.58;
  }

  .download-card-1,
  .download-card-2,
  .download-card-3 {
    margin-top: 0;
    animation: none !important;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero::before {
    height: 390px;
  }

  .hero-copy {
    padding: 22px 18px;
  }

  .hero-copy-wide {
    padding: 22px 18px 34px;
  }

  .hero-downloads {
    margin-top: -12px;
    padding: 0 8px 8px;
  }

  .download-card,
  .hero-downloads-minimal .download-link {
    width: min(168px, 28vw);
  }

  .download-card {
    min-height: 132px;
  }

  .dashboard-browser-body {
    grid-template-columns: 92px 1fr;
  }

  .desktop-app-layer {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
  }

  .editor-main {
    grid-template-columns: 26px 1fr;
  }

  .editor-inspector {
    display: none;
  }

  .browser-widget-panel {
    min-height: 128px;
  }

  h1 {
    font-size: clamp(32px, 11vw, 44px);
    line-height: 1.1;
  }

  .lead {
    font-size: 15px;
  }

  .download-link {
    min-width: 0;
    width: min(250px, 80vw);
  }

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

}

.tutorial {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0;
}

.tutorial-shell {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.tutorial-title {
  margin: 0;
}

.tutorial-intro {
  margin: 0;
  color: rgba(226, 232, 255, 0.85);
}

.tutorial-gif {
  width: min(460px, 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

@media (pointer: fine) {
  body {
    cursor: default;
  }

  a,
  button,
  [role="button"],
  .btn,
  .download-link,
  .mock-app-actions span,
  .mock-clear-btn,
  .mock-send-btn,
  .mock-widget-actions span {
    cursor: pointer;
  }
}

@media (pointer: coarse) {
  .cursor-wrap {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.hero-entrance-pending .nav-pill,
  body.hero-entrance-pending .nav-link,
  body.hero-entrance-pending .hero::before,
  body.hero-entrance-pending .hero-copy,
  body.hero-entrance-pending .hero-copy .eyebrow,
  body.hero-entrance-pending .hero-copy .hero-mini-logo,
  body.hero-entrance-pending .hero-copy h1,
  body.hero-entrance-pending .hero-copy .lead,
  body.hero-entrance-pending .hero-downloads,
  body.hero-entrance-pending .download-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }

  .background-eye-layer,
  .background-eye-layer::before,
  .background-eye-layer::after,
  .background-eye-logo {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .scroll-reveal-enabled .scroll-section .reveal-item {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}
