/* ========== Theme (overridden by content.js colors) ========== */
:root {
  --primary: #1ba7ee;
  --primary-dark: #0e8fd4;
  --accent: #3ddc97;
  --ink: #0f1b28;
  --ink-soft: #3a4d5f;
  --muted: #6b7c8c;
  --paper: #f3f7fb;
  --white: #ffffff;
  --line: rgba(15, 27, 40, 0.08);
  --shadow: 0 24px 60px rgba(15, 27, 40, 0.14);
  --radius: 20px;
  --font-display: "Sora", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", "Sora", sans-serif;
  --header-h: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

/* Ambient page wash */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(27, 167, 238, 0.18), transparent 60%),
    radial-gradient(700px 480px at 88% 8%, rgba(61, 220, 151, 0.12), transparent 55%),
    linear-gradient(180deg, #e8f4fc 0%, var(--paper) 38%, #eef3f7 100%);
  pointer-events: none;
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(243, 247, 251, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(15, 27, 40, 0.04);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* 仅放大顶部导航品牌，页脚 .brand 保持原样 */
.site-header .brand {
  gap: 14px;
}

.site-header .brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(27, 167, 238, 0.38);
}

.site-header .brand-mark::after {
  inset: 12px 10px 12px 14px;
  border-width: 3px;
  border-radius: 10px 10px 12px 6px;
}

.site-header .brand-name {
  font-size: 2.15rem;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background:
    linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 55%, var(--accent) 140%);
  box-shadow: 0 6px 16px rgba(27, 167, 238, 0.35);
  position: relative;
  flex-shrink: 0;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 6px 7px 8px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px 6px 8px 4px;
  border-left-width: 2.5px;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 72% 70%, 48% 100%, 48% 70%, 0 70%);
  opacity: 0.95;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav a {
  padding: 8px 14px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.nav a:hover {
  color: var(--ink);
  background: rgba(27, 167, 238, 0.08);
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  margin-left: auto;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(27, 167, 238, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(15, 27, 40, 0.12);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--white);
}

.btn-download {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 16px 22px;
  min-width: 168px;
  border-radius: 16px;
  background: var(--white);
  border-color: var(--line);
  text-align: left;
  box-shadow: 0 8px 24px rgba(15, 27, 40, 0.06);
}

.hero-actions .btn-download {
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
}

.btn-download strong {
  font-size: 1rem;
}

.btn-download span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--muted);
}

.btn-download:hover {
  border-color: rgba(27, 167, 238, 0.35);
  box-shadow: 0 12px 30px rgba(27, 167, 238, 0.12);
}

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  padding: 48px 0 72px;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(27, 167, 238, 0.16) 0%, transparent 42%),
    linear-gradient(200deg, rgba(61, 220, 151, 0.1) 10%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231ba7ee' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: atmosphereDrift 18s ease-in-out infinite alternate;
}

@keyframes atmosphereDrift {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.04) translate(-1%, 1%);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.brand-signal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 18px;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.05s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--ink-soft);
  margin-bottom: 14px;
  max-width: 16em;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.18s forwards;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 28em;
  margin-bottom: 28px;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.3s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: riseIn 0.8s var(--ease) 0.42s forwards;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.35s forwards, phoneFloat 5.5s ease-in-out 1.2s infinite;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Phone mock */
.phone {
  width: min(280px, 72vw);
  aspect-ratio: 9 / 18.5;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(160deg, #1a2a38, #0d1620);
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 18px;
  background: #0d1620;
  border-radius: 20px;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #7eb8df 0%, #a8d4ef 40%, #c5e4f5 100%);
  display: flex;
  flex-direction: column;
}

.chat-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 36px 16px 12px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}

.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff7e7e);
}

.chat-name {
  font-weight: 600;
  font-size: 0.92rem;
}

.chat-body {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.bubble {
  max-width: 78%;
  padding: 10px 12px;
  border-radius: 16px;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(8px);
  animation: bubbleIn 0.45s var(--ease) forwards;
}

.bubble.them {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-left-radius: 5px;
  color: var(--ink);
}

.bubble.me {
  align-self: flex-end;
  background: #dff7c8;
  border-bottom-right-radius: 5px;
  color: var(--ink);
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.chat-input-fake {
  flex: 1;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  color: var(--muted);
}

.chat-send {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}

.chat-send::before {
  content: "";
  position: absolute;
  inset: 10px 9px 10px 11px;
  background: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%, 20% 50%);
}

/* ========== Sections ========== */
.section {
  padding: 96px 0;
}

.section-head {
  margin-bottom: 48px;
  max-width: 28em;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  color: var(--ink);
}

.lead {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36em;
}

/* Highlights — not cards: open row with dividers */
.highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.highlight-item {
  padding: 32px 28px 8px 0;
  border-right: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.highlight-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.highlight-item.is-in {
  opacity: 1;
  transform: none;
}

.highlight-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.highlight-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.highlight-item p {
  color: var(--muted);
  font-size: 0.98rem;
  padding-right: 12px;
}

/* Feature blocks */
.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 88px;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.feature-block.is-in {
  opacity: 1;
  transform: none;
}

.feature-block.reverse .feature-copy {
  order: 2;
}

.feature-block.reverse .feature-visual {
  order: 1;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 10px 0 14px;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 32em;
}

.feature-visual {
  min-height: 280px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(27, 167, 238, 0.2), rgba(61, 220, 151, 0.12)),
    linear-gradient(180deg, #d9ecf8, #c5e0f0);
}

.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 45%),
    radial-gradient(circle at 70% 70%, rgba(27, 167, 238, 0.25), transparent 50%);
}

.viz-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.viz-chat,
.viz-call,
.viz-friends {
  width: min(260px, 100%);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.viz-line {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 27, 40, 0.08);
  margin-bottom: 10px;
}

.viz-line.short {
  width: 55%;
}

.viz-line.accent {
  background: rgba(27, 167, 238, 0.35);
  width: 70%;
  margin-left: auto;
}

.viz-call {
  text-align: center;
  padding: 36px 18px;
}

.viz-avatar-lg {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.viz-call-label {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 18px;
}

.viz-call-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.viz-call-dots span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(27, 167, 238, 0.15);
}

.viz-call-dots span:nth-child(2) {
  background: var(--accent);
}

.viz-friend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.viz-friend:last-child {
  margin-bottom: 0;
}

.viz-friend i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9bd0ef, #6bb8e8);
  flex-shrink: 0;
}

.viz-friend:nth-child(2) i {
  background: linear-gradient(135deg, #ffc9a8, #f5a26f);
}

.viz-friend:nth-child(3) i {
  background: linear-gradient(135deg, #b8efd4, #6ed9a8);
}

.viz-friend b {
  display: block;
  height: 8px;
  width: 70%;
  border-radius: 4px;
  background: rgba(15, 27, 40, 0.12);
  margin-bottom: 6px;
}

.viz-friend em {
  display: block;
  height: 6px;
  width: 45%;
  border-radius: 4px;
  background: rgba(15, 27, 40, 0.06);
  font-style: normal;
}

/* Experience */
.experience {
  background: linear-gradient(180deg, transparent, rgba(27, 167, 238, 0.05) 40%, transparent);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.point-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.point-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  color: var(--ink-soft);
}

.point-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(61, 220, 151, 0.2);
}

.scene-panel {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #1e3a4f 0%, #0f2433 100%);
  overflow: hidden;
}

.scene-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: orbPulse 6s ease-in-out infinite;
}

.scene-orb-a {
  width: 180px;
  height: 180px;
  top: -40px;
  right: -30px;
  background: rgba(27, 167, 238, 0.45);
}

.scene-orb-b {
  width: 140px;
  height: 140px;
  bottom: 20px;
  left: -20px;
  background: rgba(61, 220, 151, 0.3);
  animation-delay: -2s;
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.scene-card {
  position: absolute;
  inset: 48px 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(12px);
}

.scene-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.scene-row .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.scene-row .dot.muted {
  background: rgba(255, 255, 255, 0.18);
}

.scene-row .bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.bar.w60 {
  width: 60%;
}
.bar.w80 {
  width: 80%;
}
.bar.w45 {
  width: 45%;
}

.scene-bubble {
  margin-top: 24px;
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.9rem;
  width: fit-content;
  max-width: 90%;
  animation: riseIn 0.8s var(--ease) 0.6s both;
}

/* About */
.about-inner {
  max-width: 640px;
}

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-tag {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary-dark);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

/* Reveal helper */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .hero-grid,
  .feature-block,
  .feature-block.reverse,
  .experience-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-block.reverse .feature-copy,
  .feature-block.reverse .feature-visual {
    order: unset;
  }

  .highlight-row {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }

  .highlight-item:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .brand-signal {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 40px rgba(15, 27, 40, 0.08);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 72px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .brand-signal,
  .hero-title,
  .hero-sub,
  .hero-actions,
  .hero-visual,
  .bubble {
    opacity: 1;
    transform: none;
  }
}
