:root {
  color-scheme: light dark;
  --bg: #f7f4fa;
  --bg-alt: #ede8f2;
  --ink: #16131a;
  --ink-soft: #5f5968;
  --muted: #8b8494;
  --line: rgba(28, 23, 34, 0.12);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #fff;
  --violet: #7357b7;
  --violet-strong: #4f358d;
  --violet-soft: #e7ddf7;
  --mint: #88d5ad;
  --amber: #eeb45b;
  --danger: #c73d3d;
  --shadow: 0 24px 70px rgba(38, 30, 49, 0.2);
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", "Nunito Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0d11;
    --bg-alt: #15131a;
    --ink: #fbf9ff;
    --ink-soft: #cbc5d4;
    --muted: #a29bac;
    --line: rgba(255, 255, 255, 0.13);
    --surface: rgba(29, 25, 36, 0.78);
    --surface-solid: #1a1721;
    --violet: #a892ed;
    --violet-strong: #d7ccff;
    --violet-soft: rgba(134, 104, 197, 0.27);
    --mint: #91dfb6;
    --amber: #f2c06d;
    --danger: #ff7d7d;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(60, 48, 76, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 48, 76, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, transparent 92%);
}

@media (prefers-color-scheme: dark) {
  body::before {
    opacity: 0.24;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  }
}

a { color: inherit; }
button, input { font: inherit; }
button { appearance: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 10, 16, 0.76);
  color: #fff;
  backdrop-filter: blur(22px) saturate(1.18);
}

.nav-shell {
  width: min(1180px, 100%);
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(16px, 4vw, 30px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #15111b;
}

.brand-mark span {
  position: relative;
  width: 15px;
  height: 15px;
  border: 1.8px solid currentColor;
  border-radius: 999px;
}

.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.brand-mark span::before {
  width: 2px;
  height: 7px;
  left: 6px;
  top: 1.8px;
  border-radius: 2px;
  transform: rotate(34deg);
  transform-origin: bottom;
}

.brand-mark span::after {
  width: 4px;
  height: 4px;
  right: -2px;
  top: 1px;
  border-radius: 50%;
}

nav { gap: 4px; }
nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 740;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-cta {
  color: #16131a !important;
  background: #fff !important;
}

.hero {
  position: relative;
  min-height: 98svh;
  display: grid;
  align-content: end;
  gap: 34px;
  overflow: hidden;
  padding: 132px max(24px, calc((100vw - 1120px) / 2)) 7svh;
  color: #fff;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background: url("assets/ora-hero-v2.jpg") center / cover no-repeat;
  transform: scale(1.018);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 6, 9, 0.92) 0%, rgba(7, 6, 9, 0.64) 45%, rgba(7, 6, 9, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 6, 9, 0.84), rgba(7, 6, 9, 0.04) 48%);
}

.hero-inner {
  width: min(710px, 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--violet-strong);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow { color: #d8ceff; }

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(66px, 12vw, 148px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.lede {
  width: min(610px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.4;
}

.lede strong {
  color: #fff;
  font-weight: 850;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 820;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button.primary,
button {
  background: #fff;
  color: #15111b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button.quiet {
  border: 1px solid var(--line);
  background: var(--surface-solid);
  color: var(--violet-strong);
}

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

.hero-demo {
  width: min(700px, 100%);
  align-self: end;
}

.menu-strip {
  width: max-content;
  max-width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(244, 236, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.15);
  font-size: clamp(15px, 2vw, 21px);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow: hidden;
}

.signal-dot,
.status-light {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(143, 216, 176, 0.58);
  animation: breathe 2.3s ease-in-out infinite;
  flex: 0 0 auto;
}

.menu-divider {
  color: rgba(255, 255, 255, 0.62);
}

.more {
  color: #e6ddff;
  font-weight: 850;
}

.timer-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.timer-card {
  position: relative;
  min-height: 130px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #17131d;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.timer-main {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.timer-glyph,
.platform-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timer-glyph {
  width: 30px;
  height: 30px;
  color: #706a78;
  flex: 0 0 auto;
}

.timer-card h2 {
  margin: 0 0 2px;
  font-size: 19px;
  line-height: 1.05;
}

.timer-card p {
  margin: 0;
  color: #6f6977;
}

.timer-card strong {
  display: block;
  font-size: clamp(34px, 5vw, 47px);
  line-height: 0.95;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.progress {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet) var(--value), rgba(40, 32, 48, 0.12) var(--value));
  transition: background 320ms linear;
}

.platform-band,
.sync-section,
.grammar-band,
.cta-band,
.page-hero,
.content-section,
.status-page,
.account-section {
  position: relative;
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-heading p,
.sync-copy p,
.content-copy p,
.status-card p,
.platform-grid p,
.page-lede,
.legal-body p,
.legal-body li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

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

.platform-grid article,
.account-card,
.sync-visual,
.command-grid span,
.info-card,
.status-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(38, 30, 49, 0.07);
  backdrop-filter: blur(18px);
}

.platform-grid article {
  min-height: 226px;
  padding: 20px;
}

.platform-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  color: var(--violet-strong);
}

.platform-icon .icon-accent {
  stroke: var(--mint);
}

.platform-icon .fill {
  fill: color-mix(in srgb, var(--mint), transparent 62%);
}

.sync-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 48px;
  align-items: center;
  background: var(--bg-alt);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 8px;
  border-left: 2px solid var(--mint);
  border-bottom: 2px solid var(--mint);
  transform: rotate(-45deg);
}

.sync-visual {
  padding: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-solid), transparent 5%), color-mix(in srgb, var(--surface-solid), var(--bg-alt) 22%));
}

.sync-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.sync-orbit {
  fill: none;
  stroke: color-mix(in srgb, var(--violet), transparent 52%);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 7 10;
  animation: flow 4.8s linear infinite;
}

.orbit-two { animation-duration: 5.7s; }
.orbit-three { animation-duration: 6.2s; }

.pulse circle {
  fill: var(--mint);
  filter: drop-shadow(0 0 12px rgba(143, 216, 176, 0.8));
}

.pulse-a { offset-path: path("M151 231 C245 86 475 86 569 231 C475 374 245 374 151 231Z"); animation: travel 5.4s ease-in-out infinite; }
.pulse-b { offset-path: path("M208 129 C309 198 411 198 512 129 C443 260 277 260 208 129Z"); animation: travel 4.7s ease-in-out 0.8s infinite; }
.pulse-c { offset-path: path("M208 331 C309 262 411 262 512 331 C443 200 277 200 208 331Z"); animation: travel 5.9s ease-in-out 1.2s infinite; }

.shared-moment circle:first-child {
  fill: var(--surface-solid);
  stroke: var(--line);
}

.shared-moment circle:nth-child(2) {
  fill: color-mix(in srgb, var(--violet), transparent 84%);
  stroke: var(--violet);
  stroke-width: 3;
}

.shared-moment path {
  fill: none;
  stroke: var(--violet-strong);
  stroke-width: 5;
  stroke-linecap: round;
}

.shared-moment text,
.svg-device text {
  fill: var(--ink-soft);
  font-size: 14px;
  font-weight: 780;
  text-anchor: middle;
}

.svg-device rect,
.svg-device circle,
.svg-device path {
  fill: var(--surface-solid);
  stroke: var(--line);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-device .device-accent {
  fill: color-mix(in srgb, var(--violet-soft), var(--surface-solid) 50%);
  stroke: var(--violet);
}

.grammar-band {
  background: var(--bg);
}

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

.command-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.cta-band {
  min-height: 420px;
  display: grid;
  place-items: start;
  align-content: center;
  background: #111018;
  color: #fff;
}

.cta-band .eyebrow { color: #c9bcff; }
.cta-band p {
  width: min(640px, 100%);
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
  line-height: 1.5;
}

.page-hero {
  padding-top: 154px;
  padding-bottom: 72px;
  background: var(--bg-alt);
}

.page-hero.dark {
  background: #111018;
  color: #fff;
}

.page-hero.dark .eyebrow { color: #c9bcff; }
.page-hero.dark .page-lede { color: rgba(255, 255, 255, 0.76); }

.page-hero h1 {
  width: min(920px, 100%);
  font-size: clamp(58px, 9vw, 118px);
}

.page-lede {
  width: min(720px, 100%);
}

.content-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.info-grid {
  display: grid;
  gap: 10px;
}

.info-card {
  padding: 22px;
}

.info-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 19px;
}

.account-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 520px);
  gap: 48px;
  align-items: start;
  background: #111018;
  color: #fff;
}

.account-section .eyebrow { color: #c9bcff; }
.account-copy p { color: rgba(255, 255, 255, 0.74); }

.account-card {
  padding: 24px;
  background: #fff;
  color: #17131d;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.form-block { margin: 0 0 18px; }

label {
  display: block;
  margin-bottom: 8px;
  color: #6c6575;
  font-size: 14px;
  font-weight: 780;
}

.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(28, 23, 34, 0.18);
  border-radius: 14px;
  padding: 0 15px;
  background: #faf8fd;
  color: #17131d;
  outline: none;
}

input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(115, 87, 183, 0.16);
}

button {
  background: #17131d;
  color: #fff;
  box-shadow: none;
}

button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.hidden { display: none !important; }

.form-status {
  min-height: 22px;
  margin: 8px 0 0;
  color: #6c6575;
  line-height: 1.45;
}

.form-status.error { color: var(--danger); }

.account-result {
  margin-top: 10px;
  padding: 15px;
  border: 1px solid rgba(28, 23, 34, 0.12);
  border-radius: 8px;
  background: #f2ecff;
}

.account-result strong {
  display: block;
  margin-bottom: 4px;
}

.account-result span {
  color: #6c6575;
}

.status-page {
  display: grid;
  gap: 14px;
}

.status-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.status-card h2 {
  margin: 0 0 3px;
  font-size: 22px;
}

.status-card p {
  margin: 0;
}

.status-badge {
  min-width: 94px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--violet-soft);
  color: var(--violet-strong);
  font-weight: 850;
}

.status-badge.ok {
  background: color-mix(in srgb, var(--mint), transparent 72%);
  color: color-mix(in srgb, var(--ink), #167045 50%);
}

.status-badge.warn {
  background: color-mix(in srgb, var(--amber), transparent 72%);
  color: color-mix(in srgb, var(--ink), #9c620f 50%);
}

.status-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--violet-soft);
}

.status-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--violet-strong);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-body {
  padding: 84px max(24px, calc((100vw - 900px) / 2));
}

.legal-card {
  padding: clamp(22px, 5vw, 44px);
}

.legal-card h2 {
  margin-top: 38px;
  font-size: 28px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 42px;
  padding: 44px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.footer-logo {
  width: max-content;
  color: var(--ink);
}

.footer-brand p {
  margin: 14px 0 0;
}

.footer-nav {
  display: flex;
  align-items: start;
  gap: 52px;
}

.footer-nav div {
  display: grid;
  gap: 9px;
}

.footer-nav h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 14px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-nav a:hover {
  color: var(--violet-strong);
}

@keyframes breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(143, 216, 176, 0.5); }
  50% { box-shadow: 0 0 0 7px rgba(143, 216, 176, 0); }
}

@keyframes flow {
  to { stroke-dashoffset: -64; }
}

@keyframes travel {
  0% { offset-distance: 0%; opacity: 0; }
  12% { opacity: 1; }
  82% { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

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

@media (max-width: 980px) {
  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platform-grid article:last-child {
    grid-column: 1 / -1;
  }

  .sync-section,
  .account-section,
  .content-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav-shell {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 10px;
    gap: 10px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    min-height: 100svh;
    padding: 138px 18px 34px;
  }

  .hero-demo {
    width: 100%;
  }

  .timer-stack {
    grid-template-columns: 1fr;
  }

  .platform-band,
  .sync-section,
  .grammar-band,
  .cta-band,
  .page-hero,
  .content-section,
  .status-page,
  .account-section {
    padding: 70px 18px;
  }

  .page-hero {
    padding-top: 148px;
  }

  .platform-grid,
  .command-grid {
    grid-template-columns: 1fr;
  }

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

  .status-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(58px, 19vw, 78px);
  }

  h2 {
    font-size: 34px;
  }

  .menu-strip {
    font-size: 15px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row button {
    width: 100%;
  }

  .footer-nav {
    flex-direction: column;
    gap: 26px;
  }
}
