:root {
  --bg: #070a12;
  --bg-elev: #0d1422;
  --ink: #e8eef6;
  --muted: #8a9bb0;
  --line: rgba(158, 184, 210, 0.16);
  --accent: #7ec8c3;
  --accent-deep: #3d8f89;
  --warm: #e2c48a;
  --danger-soft: #6b7585;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Sora", Tahoma, sans-serif;
  --max: 1120px;
  --radius: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --d: 0s;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(61, 143, 137, 0.18), transparent 55%),
    radial-gradient(900px 500px at 0% 30%, rgba(226, 196, 138, 0.06), transparent 50%),
    linear-gradient(180deg, #05070d 0%, var(--bg) 40%, #0a101c 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.04;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.orb {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.orb-a {
  width: 340px;
  height: 340px;
  top: 12%;
  right: -80px;
  background: rgba(126, 200, 195, 0.22);
}

.orb-b {
  width: 280px;
  height: 280px;
  bottom: 18%;
  left: -100px;
  background: rgba(226, 196, 138, 0.12);
  animation-duration: 22s;
  animation-delay: -4s;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
.brand,
.brand-sm,
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 18, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.top.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 10, 18, 0.88);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.15rem;
  font-weight: 800;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.logo:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex: 0 0 auto;
}

.footer .logo-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.25s var(--ease);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 2.75rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: #061018;
}

.btn-primary:hover {
  background: #95d6d1;
  box-shadow: 0 10px 30px rgba(126, 200, 195, 0.18);
}

.btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.45) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: shine 4.5s ease-in-out infinite;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: rgba(126, 200, 195, 0.45);
  background: rgba(126, 200, 195, 0.06);
}

.btn-link {
  background: transparent;
  color: var(--muted);
  padding-inline: 0.5rem;
  border: none;
}

.btn-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.55rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.btn-link:hover {
  color: var(--ink);
}

.btn-link:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 4.5rem);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 1.5rem 3rem;
}

.hero-copy {
  padding-bottom: 0;
}

.anim-hero {
  opacity: 0;
  transform: translateY(22px);
  animation: rise 0.85s var(--ease) both;
  animation-delay: var(--d);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 0.85rem;
}

.brand-icon {
  width: clamp(52px, 8vw, 72px);
  height: clamp(52px, 8vw, 72px);
  border-radius: 16px;
  object-fit: cover;
  flex: 0 0 auto;
}

.brand-lockup .brand,
.brand.anim-hero {
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 0.95;
  text-shadow: none;
  background: linear-gradient(120deg, #f2f7fc 20%, #7ec8c3 55%, #e2c48a 90%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    rise 0.85s var(--ease) both,
    brand-shift 8s ease-in-out infinite alternate;
  animation-delay: var(--d), 0.9s;
}

.brand-lockup.anim-hero {
  animation: rise 0.85s var(--ease) both;
  animation-delay: var(--d);
}

.brand-lockup.anim-hero .brand {
  animation:
    brand-shift 8s ease-in-out infinite alternate;
  animation-delay: 0.9s;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.15;
}

.lede {
  margin: 0;
  max-width: 38ch;
  color: var(--muted);
  font-weight: 300;
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 280px at 70% 20%, rgba(126, 200, 195, 0.14), transparent 60%),
    linear-gradient(160deg, rgba(13, 20, 34, 0.95), rgba(7, 10, 18, 0.75));
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.hero-stage:hover {
  border-color: rgba(126, 200, 195, 0.35);
  transform: translateY(-3px);
}

.app-window {
  width: min(100%, 340px);
  border: 1px solid var(--line);
  background: #0b1220;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  animation: rise 0.9s var(--ease) both;
}

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.app-title-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  object-fit: cover;
}

.app-dots {
  display: flex;
  gap: 0.35rem;
}

.app-dots i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #3a4658;
}

.app-dots i:first-child { background: #c97b7b; }
.app-dots i:nth-child(2) { background: #c9b27b; }
.app-dots i:nth-child(3) { background: #7bc9a0; }

.app-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.app-body {
  padding: 1.1rem 0.9rem 1rem;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0.85rem;
  border: 1px solid rgba(126, 200, 195, 0.28);
  background: rgba(126, 200, 195, 0.08);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(126, 200, 195, 0.45);
  animation: mark-ping 2.2s ease-out infinite;
}

.app-status strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.app-status p {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.app-dns {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
}

.app-dns li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.app-dns li:first-child {
  border-top: 0;
}

.app-dns li span:last-child {
  font-variant-numeric: tabular-nums;
  opacity: 0.8;
}

.app-dns li.is-active {
  color: var(--ink);
  background: rgba(126, 200, 195, 0.1);
  animation: dns-select 3.8s ease-in-out infinite;
}

section {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
}

.section-head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.pros-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.pros-list li {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding-left 0.35s var(--ease);
}

.pros-list li:hover {
  background: rgba(126, 200, 195, 0.04);
}

.pros-list li:nth-child(odd) {
  padding-right: 2rem;
  border-right: 1px solid var(--line);
}

.pros-list li:nth-child(even) {
  padding-left: 2rem;
}

.pros-list li:nth-child(even):hover {
  padding-left: 2.35rem;
}

.pros-list li:nth-child(odd):hover {
  padding-left: 0.35rem;
}

.pros-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: letter-spacing 0.35s var(--ease), color 0.35s var(--ease);
}

.pros-list li:hover .pros-label {
  letter-spacing: 0.2em;
  color: #9fd8d2;
}

.pros-list h3,
.steps h3,
.compare-col h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  transition: color 0.3s var(--ease);
}

.pros-list li:hover h3 {
  color: #f2f7fc;
}

.pros-list p,
.steps p,
.compare-col li,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.steps li {
  position: relative;
  padding-top: 0.25rem;
  transition: transform 0.35s var(--ease);
}

.steps li:hover {
  transform: translateY(-4px);
}

.steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--warm), transparent);
  transition: width 0.45s var(--ease);
}

.steps li:hover::before,
.steps li.is-in::before {
  width: 48px;
}

.step-num {
  display: block;
  margin-bottom: 1rem;
  color: var(--warm);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.35s var(--ease), color 0.35s var(--ease);
}

.steps li:hover .step-num {
  transform: translateX(4px);
  color: #f0d7a4;
}

.how {
  position: relative;
}

.how::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: line-grow 1.2s var(--ease) 0.2s both;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.compare-col {
  padding: 2rem 1.75rem;
  transition: background 0.4s var(--ease);
}

.compare-col.off {
  background: rgba(8, 10, 16, 0.55);
  color: var(--danger-soft);
}

.compare-col.on {
  background: linear-gradient(160deg, rgba(61, 143, 137, 0.14), rgba(13, 20, 34, 0.35));
  border-left: 1px solid var(--line);
}

.compare-col:hover {
  background: rgba(126, 200, 195, 0.06);
}

.compare-col.on:hover {
  background: linear-gradient(160deg, rgba(61, 143, 137, 0.22), rgba(13, 20, 34, 0.4));
}

.compare-col h3 {
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.compare-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-col li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.1rem;
  border-top: 1px solid var(--line);
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease), transform 0.3s var(--ease);
}

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 6px;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}

.compare-col li:hover {
  padding-left: 1.35rem;
  color: var(--ink);
  transform: translateX(2px);
}

.compare-col li:hover::before {
  width: 12px;
  background: var(--accent);
}

.compare-col.on li {
  color: #c5d8d6;
}

.download {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(126, 200, 195, 0.16), transparent 60%),
    linear-gradient(135deg, #0d1422, #070a12 55%, #10182a);
  text-align: left;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.download-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  border-radius: 50%;
  background: rgba(126, 200, 195, 0.12);
  filter: blur(20px);
  animation: orb-drift 10s ease-in-out infinite alternate;
}

.download-panel:hover {
  border-color: rgba(126, 200, 195, 0.35);
  transform: translateY(-3px);
}

.brand-sm {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  animation: letter-breathe 3.5s ease-in-out infinite;
}

.download-panel h2,
.download-panel .lede,
.download-panel .btn {
  position: relative;
  z-index: 1;
}

.download-panel h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.download-panel .lede {
  margin-bottom: 1.75rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.faq-item {
  position: relative;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease);
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0.35rem -0.55rem;
  border: 1px solid transparent;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.985);
  transition:
    border-color 0.4s var(--ease),
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.faq-item:hover {
  background: rgba(126, 200, 195, 0.03);
}

.faq-item.is-open {
  background: rgba(126, 200, 195, 0.035);
}

.faq-item.is-open::before {
  border-color: rgba(126, 200, 195, 0.55);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 0 1px rgba(126, 200, 195, 0.08);
  animation: faq-frame 0.55s var(--ease) both;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 1.2rem 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.faq-item:hover .faq-question,
.faq-item.is-open .faq-question {
  color: #f2f7fc;
}

.faq-item.is-open .faq-question {
  transform: translateX(2px);
}

.faq-icon {
  position: relative;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent);
}

.faq-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s var(--ease),
    background 0.3s var(--ease);
}

.faq-icon i:first-child {
  transform: translate(-50%, -50%);
}

.faq-icon i:last-child {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  color: #9fd8d2;
}

.faq-item.is-open .faq-icon i:first-child {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item.is-open .faq-icon i:last-child {
  transform: translate(-50%, -50%) rotate(180deg);
  opacity: 0;
}

.faq-item:hover .faq-icon {
  animation: faq-icon-nudge 0.55s var(--ease);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.45s var(--ease),
    opacity 0.35s var(--ease);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  transition:
    grid-template-rows 0.5s var(--ease),
    opacity 0.45s 0.05s var(--ease);
}

.faq-panel[hidden] {
  display: grid;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-panel-inner p {
  margin: 0;
  padding: 0 0.35rem 1.2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.95rem;
  transform: translateY(-6px);
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}

.faq-item.is-open .faq-panel-inner p {
  transform: translateY(0);
  color: #b7c7d6;
}

@keyframes faq-frame {
  from {
    opacity: 0;
    transform: scale(0.975);
    border-color: rgba(126, 200, 195, 0);
  }
  to {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(126, 200, 195, 0.55);
  }
}

@keyframes faq-icon-nudge {
  0%,
  100% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(12deg);
  }
}

.footer {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer .logo {
  color: var(--ink);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
  transition-delay: var(--d);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.72);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 2rem 1.75rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.modal.is-open .modal-panel {
  transform: none;
  opacity: 1;
}

.modal-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.6rem;
}

.modal-pass {
  color: var(--muted);
  margin: 0 0 1rem;
}

.modal-pass code {
  display: inline-block;
  padding: 0.1rem 0.4rem;
  border: 1px solid rgba(126, 200, 195, 0.35);
  color: var(--accent);
  animation: code-pulse 2.2s ease-in-out infinite;
}

.modal-steps {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.modal-steps li {
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.modal-steps li:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.modal-steps li + li {
  margin-top: 0.45rem;
}

.modal-panel code {
  color: var(--accent);
  font-family: var(--font-body);
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.modal-close:hover {
  color: var(--ink);
  transform: rotate(90deg);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shine {
  0%,
  55%,
  100% {
    transform: translateX(-120%);
  }
  70% {
    transform: translateX(120%);
  }
}

@keyframes dns-select {
  0%,
  100% {
    background: rgba(126, 200, 195, 0.1);
  }
  50% {
    background: rgba(126, 200, 195, 0.18);
  }
}

@keyframes brand-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes mark-ping {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 200, 195, 0.45);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(126, 200, 195, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 200, 195, 0);
  }
}

@keyframes orb-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes letter-breathe {
  0%,
  100% {
    letter-spacing: 0.18em;
    opacity: 0.9;
  }
  50% {
    letter-spacing: 0.24em;
    opacity: 1;
  }
}

@keyframes code-pulse {
  0%,
  100% {
    border-color: rgba(126, 200, 195, 0.35);
  }
  50% {
    border-color: rgba(126, 200, 195, 0.8);
  }
}

@media (max-width: 900px) {
  .top-inner {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .nav {
    order: 3;
    width: 100%;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    white-space: nowrap;
    font-size: 0.82rem;
  }

  .orb {
    opacity: 0.2;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-stage {
    min-height: 300px;
    order: -1;
  }

  .pros-list,
  .steps,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .pros-list li:nth-child(odd),
  .pros-list li:nth-child(even) {
    padding: 1.5rem 0;
    border-right: none;
  }

  .pros-list li:nth-child(odd):hover,
  .pros-list li:nth-child(even):hover {
    padding-left: 0.35rem;
  }

  .compare-col.on {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .anim-hero,
  [data-reveal],
  [data-reveal].is-in {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .brand,
  .brand.anim-hero,
  .brand-lockup .brand {
    color: var(--ink);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  .faq-panel,
  .faq-panel-inner p,
  .faq-item::before,
  .faq-icon i {
    transition: none !important;
    animation: none !important;
  }
}
