:root {
  --coral: #f05b53;
  --coral-2: #ff7161;
  --coral-d: #d94a42;
  --orange: #ffad61;
  --lime: #e1f295;
  --ok: #2b8a3e;
  --ok-bg: #e5f7ee;
  --out-bg: #ffe5e5;
  --deep: #0b1c2c;
  --deep-2: #132536;
  --ink: #141414;
  --muted: #5a6570;
  --foam: #eef2f5;
  --paper: #ffffff;
  --line: rgba(11, 28, 44, 0.1);
  --font: "Nunito", system-ui, sans-serif;
  --max: 74rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --h: 3.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--foam);
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.wrap--s {
  width: min(100% - 2rem, 34rem);
  margin-inline: auto;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.15rem;
  background: rgba(8, 18, 28, 0.88);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #fff;
}

.logo--foot {
  margin: 0;
  color: var(--deep);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-link {
  display: none;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--coral-d);
}

/* Hero */
.hero {
  position: relative;
  background: #08121c;
  color: #eef3f7;
  padding: 2rem 0 0;
  overflow: hidden;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__orb--coral {
  width: min(50vw, 28rem);
  height: min(50vw, 28rem);
  top: -10%;
  right: -5%;
  background: rgba(240, 91, 83, 0.45);
  animation: orb 12s var(--ease) infinite alternate;
}

.hero__orb--lime {
  width: min(40vw, 22rem);
  height: min(40vw, 22rem);
  bottom: 10%;
  left: -8%;
  background: rgba(225, 242, 149, 0.18);
  animation: orb 16s var(--ease) infinite alternate-reverse;
}

.hero__grid {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-2);
}

.live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #6dde7a;
  box-shadow: 0 0 0 0 rgba(109, 222, 122, 0.5);
  animation: pulse-g 2s ease-out infinite;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 4.8vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.hero__brand {
  display: block;
  margin-bottom: 0.45rem;
  font-size: clamp(2.5rem, 8vw, 4.2rem);
  line-height: 0.95;
  background: linear-gradient(100deg, #fff 10%, var(--coral-2) 75%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin: 0 0 1.4rem;
  max-width: 32ch;
  font-size: 1.05rem;
  font-weight: 650;
  color: rgba(238, 243, 247, 0.7);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(240, 91, 83, 0.4);
  transition: transform 0.2s var(--ease), background 0.2s;
}

.cta:hover {
  background: var(--coral-d);
  transform: translateY(-2px);
}

.cta--ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

.cta--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 750;
  color: rgba(238, 243, 247, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(238, 243, 247, 0.25);
}

.text-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Demo device */
.hero__demo {
  scroll-margin-top: calc(var(--h) + 0.5rem);
}

.demo-shell {
  max-width: 22rem;
  margin: 0 auto;
}

.demo-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  margin-bottom: 0.85rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.55rem 0.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.demo-tab.is-active {
  background: #fff;
  color: var(--deep);
}

.device {
  filter: drop-shadow(0 36px 60px rgba(0, 0, 0, 0.55));
}

.device__bezel {
  position: relative;
  border-radius: 2.1rem;
  padding: 0.55rem;
  background: linear-gradient(160deg, #3a4d5e, #101c28 55%, #0a1520);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device__island {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  z-index: 5;
  width: 5.2rem;
  height: 1.15rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050a10;
}

.device__viewport {
  position: relative;
  border-radius: 1.6rem;
  background: #f2f2f2;
  height: 32rem;
  overflow: hidden;
  color: var(--ink);
}

.screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(12px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.screen.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.screen[hidden] {
  display: flex !important;
}

.screen__pad {
  flex: 1;
  padding: 2rem 0.9rem 0.75rem;
  overflow: hidden;
}

.screen__pad--chat {
  display: flex;
  flex-direction: column;
}

.greet {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.greet__hi {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.greet__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
}

.badge {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.metric-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
}

.metric-value {
  margin: 0.15rem 0 0.55rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.metric-value em {
  font-style: normal;
  font-size: 1rem;
  font-weight: 800;
}

.metric-pills {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.pill-out,
.pill-in {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
}

.pill-out {
  background: var(--out-bg);
  color: #c92a2a;
}

.pill-in {
  background: var(--ok-bg);
  color: var(--ok);
}

.card-trip,
.budget-card {
  background: #fff;
  border-radius: 1rem;
  padding: 0.75rem 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 0.55rem;
}

.card-trip__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem;
}

.card-trip p {
  margin: 0.25rem 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--muted);
}

.status-live {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ok);
  background: var(--ok-bg);
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
}

.spark {
  display: flex;
  align-items: flex-end;
  gap: 0.28rem;
  height: 2.4rem;
}

.spark i {
  flex: 1;
  border-radius: 0.25rem 0.25rem 0.1rem 0.1rem;
  background: linear-gradient(180deg, var(--coral-2), var(--lime));
  animation: bar 1.8s ease-in-out infinite;
}

.spark i:nth-child(1) {
  height: 35%;
}
.spark i:nth-child(2) {
  height: 55%;
  animation-delay: 0.1s;
}
.spark i:nth-child(3) {
  height: 40%;
  animation-delay: 0.2s;
}
.spark i:nth-child(4) {
  height: 78%;
  animation-delay: 0.15s;
}
.spark i:nth-child(5) {
  height: 50%;
  animation-delay: 0.25s;
}
.spark i:nth-child(6) {
  height: 68%;
  animation-delay: 0.05s;
}
.spark i:nth-child(7) {
  height: 45%;
  animation-delay: 0.3s;
}

.budget-card__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.track {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.track__fill {
  display: block;
  width: 91%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--orange));
}

.app-dock {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  gap: 0.2rem;
  margin: 0.35rem 0.65rem 0.65rem;
  padding: 0.45rem 0.4rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.app-dock__item {
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--muted);
}

.app-dock__item.is-on {
  color: var(--coral);
}

.app-dock__mic {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(240, 91, 83, 0.45);
  animation: pulse 2s ease-out infinite;
}

.screen-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.screen-title strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.sync-chip {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 0.75rem;
}

.seg span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.4rem;
  border-radius: 999px;
  color: var(--muted);
}

.seg__on {
  background: #fff !important;
  color: var(--ink) !important;
}

.day-label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ledger {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.ledger li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.ledger b {
  display: block;
  font-size: 0.82rem;
}

.ledger small {
  font-size: 0.65rem;
  font-weight: 650;
  color: var(--muted);
}

.neg {
  color: var(--coral-d);
  font-size: 0.78rem;
}

.pos {
  color: var(--ok);
  font-size: 0.78rem;
}

.ico {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
}

.ico--fuel {
  background: linear-gradient(145deg, #ffc9c9, #ffe5e5);
}
.ico--ice {
  background: linear-gradient(145deg, #a8d4f7, #cbe7ff);
}
.ico--fish {
  background: linear-gradient(145deg, #c8efd8, #e5f7ee);
}
.ico--tempo {
  background: linear-gradient(145deg, #fccc8e, #ffe8c8);
}

.chat-sub {
  margin: -0.35rem 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
}

.chat-stream {
  display: grid;
  gap: 0.5rem;
  flex: 1;
  align-content: start;
}

.msg {
  max-width: 90%;
  padding: 0.7rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.msg--bot {
  justify-self: start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom-left-radius: 0.3rem;
}

.msg--you {
  justify-self: end;
  background: linear-gradient(135deg, var(--coral), var(--coral-2));
  color: #fff;
  border-bottom-right-radius: 0.3rem;
}

.suggest {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0;
}

.suggest button {
  border: 1px solid rgba(240, 91, 83, 0.35);
  background: #fff;
  color: var(--coral-d);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: default;
}

.composer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  font-weight: 650;
  color: var(--muted);
}

.composer__mic {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--coral);
}

.nota-sheet {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 0.9rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.nota-sheet__brand {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nota-sheet__title {
  margin: 0.25rem 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--ok);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.nota-sheet__rule {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.15) 0 6px,
    transparent 6px 10px
  );
  margin-bottom: 0.5rem;
}

.nota-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.nota-row b {
  color: var(--ink);
}

.nota-row.accent b {
  color: var(--coral-d);
}

.nota-sheet__cta {
  width: 100%;
  margin-top: 0.85rem;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.75rem;
  cursor: default;
}

.demo-hint {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 650;
  color: rgba(238, 243, 247, 0.5);
}

/* Waves */
.waves {
  display: block;
  width: 100%;
  height: 4.5rem;
  margin-top: 0.5rem;
}

.waves__back {
  fill: rgba(238, 242, 245, 0.35);
}

.waves__front {
  fill: var(--foam);
}

/* Strip */
.strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.strip__inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.9rem 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  animation: marquee 26s linear infinite;
}

.strip__inner span {
  white-space: nowrap;
}

/* Sections */
.section {
  padding: clamp(3.25rem, 7vw, 5rem) 0;
  scroll-margin-top: calc(var(--h) + 0.5rem);
}

#unduh,
#pasang,
#fitur,
#demo {
  scroll-margin-top: calc(var(--h) + 0.5rem);
}

.section-head {
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral-d);
}

.section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.4vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--deep);
  line-height: 1.15;
}

.section--fitur {
  background: var(--foam);
}

.story {
  display: grid;
  gap: 0.85rem;
}

.story__card {
  position: relative;
  padding: 1.25rem 1.2rem 1.3rem;
  border-radius: 1.35rem;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.story__card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--coral), var(--orange));
}

.story__num {
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--coral);
  margin-bottom: 0.35rem;
}

.story__card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--deep);
}

.story__card > p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.95rem;
}

.mini-ui {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.9rem;
  background: var(--foam);
}

.chip {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(11, 28, 44, 0.07);
  color: var(--muted);
}

.chip--hot {
  background: var(--coral);
  color: #fff;
}

.chip--ok {
  background: var(--ok-bg);
  color: var(--ok);
}

.mini-ui--trip {
  justify-content: space-between;
}

.mini-ui--mic {
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--muted);
}

.mic-orb {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse 2s ease-out infinite;
}

.mini-ui--split span {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.5rem;
  border-radius: 0.55rem;
}

.mini-ui--split span:first-child {
  background: rgba(240, 91, 83, 0.12);
  color: var(--coral-d);
}

.mini-ui--split span:last-child {
  background: var(--ok-bg);
  color: var(--ok);
}

.section--flow {
  background: var(--paper);
}

.flow-line {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr 1fr;
}

.flow-line li {
  padding: 1.1rem 1rem;
  border-radius: 1.1rem;
  background: var(--foam);
  border: 1px solid var(--line);
}

.flow-line strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--deep);
  margin-bottom: 0.15rem;
}

.flow-line span {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
}

.section--install {
  background: var(--foam);
}

.steps {
  list-style: none;
  margin: 1.35rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
}

.steps span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--deep);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.steps strong {
  display: block;
  color: var(--deep);
}

.steps p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.92rem;
}

.close {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
  background: linear-gradient(165deg, #08121c, #153044);
  color: #eef3f7;
  text-align: center;
}

.close h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.close p {
  margin: 0 0 1.35rem;
  color: rgba(238, 243, 247, 0.68);
  font-weight: 650;
}

.close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.close__help {
  margin-top: 1.1rem !important;
  font-size: 0.88rem !important;
}

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

.site-footer__row {
  padding: 1.75rem 0 2.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.footer-wa {
  font-weight: 800;
  color: var(--deep);
}

[hidden]:not(.screen) {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-inview {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(240, 91, 83, 0.45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(240, 91, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(240, 91, 83, 0);
  }
}

@keyframes pulse-g {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 222, 122, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(109, 222, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 222, 122, 0);
  }
}

@keyframes orb {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-6%, 4%) scale(1.08);
  }
}

@keyframes bar {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.7);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (min-width: 720px) {
  .header-link {
    display: inline;
  }

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

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

@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    min-height: calc(100svh - var(--h) - 4.5rem);
    gap: 3rem;
    padding-bottom: 1rem;
  }

  .demo-shell {
    margin-right: 0;
    margin-left: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__orb,
  .live-dot,
  .app-dock__mic,
  .mic-orb,
  .spark i,
  .strip__inner {
    animation: none !important;
  }

  .reveal,
  .screen {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
