/* ==========================================================================
   GreenCast Landing Page — styles.css
   ========================================================================== */

/* Design tokens */
:root {
  --bg:              #0d1110;
  --surface:         #1a231e;
  --surface-hi:      #223029;
  --text:            #f5f8f6;
  --text-muted:      #a5b0ab;
  --green:           #22d76e;
  --green-bright:    #5aff9e;
  --green-dim:       rgba(34, 215, 110, 0.14);
  --glass-bg:        linear-gradient(to bottom right, rgba(24,36,31,0.44), rgba(15,24,20,0.24));
  --glass-border:    1px solid rgba(255,255,255,0.08);
  --glass-shadow:    0 24px 80px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.07);
  --radius-sm:       16px;
  --radius-md:       24px;
  --radius-lg:       34px;
  --ease:            cubic-bezier(0.2, 0.65, 0.2, 1);
  --dur-fast:        0.22s;
  --dur-base:        0.42s;
  --dur-slow:        0.62s;
  --container:       1280px;
}

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 600px at 12% -5%, rgba(34, 215, 110, 0.11), transparent 62%),
    radial-gradient(900px 420px at 88% -12%, rgba(90, 255, 158, 0.08), transparent 66%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--dur-base) var(--ease);
}

:where(a, button, input, textarea, select, [role="button"]):focus-visible {
  outline: 2px solid rgba(141, 223, 178, 0.85);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Typography */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.1;
}

h3 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition:
    transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    filter var(--dur-base) var(--ease),
    background var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease),
    color var(--dur-base) var(--ease);
}

.btn-primary {
  background: linear-gradient(130deg, var(--green-bright) 0%, var(--green) 100%);
  color: #0d1110;
  box-shadow:
    0 14px 34px rgba(34, 215, 110, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(34, 215, 110, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  filter: brightness(1.03);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.text-dark {
  color: #0d1110 !important;
}

/* Badge */
.badge {
  display: inline-block;
  padding: 7px 14px;
  background: rgba(34, 215, 110, 0.12);
  color: var(--green);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(34, 215, 110, 0.28);
  margin-bottom: 1.1rem;
}

/* Section label */
.section-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* Header / nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(13, 17, 16, 0.9), rgba(13, 17, 16, 0.76));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  user-select: none;
}

.logo-mark-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.logo-mark-svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 12px rgba(34, 215, 110, 0.3));
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}

.logo-dot {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(245, 248, 246, 0.7);
  transition: color var(--dur-fast) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(245,248,246,0.55), rgba(255,255,255,0));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-fast) var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-auth {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

/* User chip / auth styles */
.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.user-avatar-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 215, 110, 0.2);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.user-text {
  min-width: 0;
}

.user-name,
.user-email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-name {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.2;
}

.user-email {
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

/* Scroll margin for fixed header */
section[id] {
  scroll-margin-top: 100px;
}

/* Hero */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: clamp(96px, 13vw, 148px);
  padding-bottom: clamp(48px, 8vw, 96px);
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
}

.hero-desc {
  max-width: 50ch;
  margin-bottom: 1.6rem;
  font-size: clamp(1rem, 1.3vw, 1.12rem) !important;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(245, 248, 246, 0.48);
  margin-bottom: 0;
  max-width: none;
}

/* Phone visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -15% -5%;
  background: radial-gradient(ellipse at 50% 55%, rgba(34, 215, 110, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-phone {
  position: relative;
  background: #060807;
  border-radius: 44px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.11),
    0 48px 96px -24px rgba(0, 0, 0, 0.7),
    0 28px 60px -34px rgba(34, 215, 110, 0.42);
  max-width: 300px;
  width: 100%;
  transform: perspective(1400px) rotateY(-10deg) rotateX(3deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}

.hero-phone:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg) scale(1.02);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.16),
    0 56px 110px -24px rgba(0, 0, 0, 0.75),
    0 34px 70px -34px rgba(34, 215, 110, 0.52);
}

.hero-phone img {
  border-radius: 36px;
  width: 100%;
  height: auto;
  display: block;
}

/* Feature strip */
.feature-strip {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 1.6rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.strip-item i {
  font-size: 1.2rem;
  color: var(--green);
}

.strip-item:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* Features section */
.features {
  counter-reset: feature;
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  padding-top: clamp(3rem, 7vw, 5rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.feature-row {
  counter-increment: feature;
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  position: relative;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-row::after {
  content: "0" counter(feature);
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(165, 176, 171, 0.2);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
}

.feature-text {
  flex: 0.85;
}

.feature-text h2 {
  margin-bottom: 0.9rem;
}

.feature-text p {
  max-width: 55ch;
  margin-bottom: 1.2rem;
}

.feature-row.reverse .feature-text p {
  margin-left: auto;
}

.feature-media {
  flex: 1;
  display: flex;
  justify-content: center;
  perspective: 1000px;
  padding: clamp(0.25rem, 1.5vw, 0.75rem);
}

.link-cta {
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
}

.link-cta:hover {
  opacity: 0.8;
}

/* Device frames */
.device-frame {
  position: relative;
  background: #060807;
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.11),
    0 44px 90px -26px rgba(0, 0, 0, 0.72),
    0 25px 55px -32px rgba(34, 215, 110, 0.34);
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.1s ease-out, box-shadow 0.3s ease;
  will-change: transform;
}

.feature-row.reverse .device-frame {
  transform: perspective(1000px) rotateY(10deg) rotateX(5deg);
}

.device-frame:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0) scale(1.04) !important;
  z-index: 10;
}

.device-frame img {
  border-radius: 32px;
  width: 100%;
  height: auto;
  display: block;
}

.device-frame.web {
  max-width: 760px;
  border-radius: 12px;
  padding: 8px 8px 24px;
  transform: perspective(1000px) rotateX(5deg);
}

.device-frame.web img {
  border-radius: 4px;
}

/* Silence trim demo */
.silence-trim-demo-wrapper {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.silence-trim-demo {
  position: relative;
  width: 100%;
  min-height: clamp(320px, 60vw, 600px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.trim-logo-container {
  position: relative;
  width: clamp(260px, 80vw, 600px);
  height: clamp(260px, 80vw, 600px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.trim-icon-bg {
  width: clamp(180px, 55vw, 400px);
  height: clamp(180px, 55vw, 400px);
  background-color: var(--green);
  border-radius: clamp(54px, 16vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 40px 100px rgba(34, 215, 110, 0.4);
  animation: pulseIcon 3s infinite ease-in-out;
  transition: transform 0.1s;
}

.trim-icon-bg.tilt-shake {
  animation: tiltShake 0.3s ease-out;
}

.trim-icon-scissors {
  font-size: clamp(90px, 28vw, 200px);
  color: #0d1411;
  display: inline-block;
}

.trim-icon,
.trim-icon-real {
  display: none;
}

.trim-label {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-top: 20px;
}

.time-particle {
  position: absolute;
  color: #0d1411;
  font-weight: 800;
  font-size: clamp(1.1rem, 4.8vw, 2rem);
  background: var(--green);
  padding: 12px 24px;
  border-radius: 40px;
  pointer-events: none;
  animation: floatUp 1.5s forwards ease-out;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

@keyframes tiltShake {
  0%   { transform: rotate(0deg) scale(1.02); }
  25%  { transform: rotate(-5deg) scale(1.05); }
  50%  { transform: rotate(5deg) scale(1.05); }
  75%  { transform: rotate(-5deg) scale(1.05); }
  100% { transform: rotate(0deg) scale(1); }
}

@keyframes pulseIcon {
  0%   { transform: scale(1);    box-shadow: 0 10px 30px rgba(34, 215, 110, 0.4); }
  50%  { transform: scale(1.05); box-shadow: 0 15px 40px rgba(34, 215, 110, 0.6); }
  100% { transform: scale(1);    box-shadow: 0 10px 30px rgba(34, 215, 110, 0.4); }
}

@keyframes floatUp {
  0%   { transform: translate(-50%, 20px) scale(0.5);   opacity: 0; }
  20%  { transform: translate(-50%, -10px) scale(1.1);  opacity: 1; }
  100% { transform: translate(-50%, -100px) scale(1);   opacity: 0; }
}

/* CTA section */
.cta-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.cta-card {
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 0.98;
  margin-bottom: 0.75rem;
}

.cta-card p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: clamp(1rem, 2.5vw, 1.8rem) 0 0.75rem;
}

.cta-actions .btn {
  min-width: 200px;
}

.cta-note {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-muted);
  max-width: none;
}

.cta-note i {
  margin-right: 0.3rem;
}

/* FAQ */
.faq {
  padding-top: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}

.faq h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  margin-bottom: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.faq-item {
  border-radius: 20px;
  background: rgba(24, 38, 33, 0.56);
  border: var(--glass-border);
  padding: 1.1rem 1.2rem;
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.faq-item p {
  font-size: 0.92rem;
  margin-bottom: 0;
  max-width: none;
  line-height: 1.6;
}

.faq-item a {
  color: var(--green);
}

/* Footer */
footer {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent),
    var(--bg);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
  max-width: none;
}

footer nav {
  display: flex;
  gap: 1.5rem;
}

footer nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--dur-fast) var(--ease);
}

footer nav a:hover {
  color: var(--text);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 16px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: linear-gradient(to bottom right, rgba(24, 36, 31, 0.88), rgba(15, 24, 20, 0.80));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  z-index: 920;
  transition:
    opacity var(--dur-fast) var(--ease),
    transform var(--dur-fast) var(--ease);
}

.floating-cta.visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.floating-cta .btn {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.9s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes featureRowIn {
  0%   { opacity: 0; transform: translateY(32px); filter: blur(5px); }
  100% { opacity: 1; transform: none; filter: none; }
}

.features.animate-ready .feature-row {
  opacity: 0;
  transform: translateY(30px);
}

.features.animate-ready .feature-row.in-view {
  animation: featureRowIn var(--dur-slow) var(--ease) var(--row-delay, 0s) forwards;
}

/* Responsive */
@media (max-width: 980px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .feature-text,
  .feature-row.reverse .feature-text {
    width: 100%;
  }

  .feature-text p,
  .feature-row.reverse .feature-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-media {
    width: 100%;
  }

  .device-frame,
  .feature-row.reverse .device-frame {
    transform: none;
    max-width: 280px;
  }

  .device-frame.web {
    max-width: 100%;
  }

  .silence-trim-demo-wrapper {
    min-height: 340px;
  }

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

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-phone {
    max-width: 220px;
    transform: none;
  }

  .hero-phone:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 900px) {
  .feature-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto auto;
  }

  .feature-row {
    border-radius: var(--radius-md);
    padding: 1rem;
  }

  .feature-row::after {
    top: 10px;
    right: 14px;
  }

  .cta-card {
    border-radius: var(--radius-md);
  }

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

  .cta-actions .btn {
    min-width: min(100%, 300px);
  }

  .logo-text {
    font-size: 1.7rem;
  }

  .logo-mark-wrap {
    width: 40px;
    height: 40px;
  }

  .nav-auth {
    max-width: min(70vw, 360px);
    margin-left: auto;
  }

  .user-chip {
    max-width: 170px;
    padding: 6px 8px;
  }

  .user-email {
    display: none;
  }
}

@media (max-width: 640px) {
  .floating-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-phone {
    max-width: 180px;
  }

  .features {
    gap: 1.8rem;
  }

  .feature-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .features.animate-ready .feature-row {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .floating-cta {
    transition: none;
  }

  .hero-phone {
    transform: none;
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq-item {
    transition:
      transform var(--dur-base) var(--ease),
      border-color var(--dur-base) var(--ease);
  }

  .faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 1280px) {
  .user-chip {
    max-width: 230px;
  }

  .user-email {
    display: none;
  }
}
