/* Modern refinement layer for the original cinematic AnswerWing home page. */
:root {
  --aw-bg: #0b0f0c;
  --aw-surface: #111712;
  --aw-surface-strong: #151d17;
  --aw-text: #f5f2eb;
  --aw-muted: rgba(245, 242, 235, 0.7);
  --aw-soft: rgba(245, 242, 235, 0.54);
  --aw-line: rgba(245, 242, 235, 0.12);
  --aw-line-strong: rgba(245, 242, 235, 0.2);
  --aw-accent: #2fe38b;
  --aw-accent-soft: rgba(47, 227, 139, 0.12);
  --aw-alert: #76e9b0;
  --aw-alert-soft: rgba(47, 227, 139, 0.12);
  --aw-radius: 24px;
  --aw-shadow: 0 32px 90px -52px rgba(0, 0, 0, 0.96), inset 0 1px rgba(255, 255, 255, 0.035);
}

html {
  color-scheme: dark;
  scroll-padding-top: 104px;
  background: var(--aw-bg);
}

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

body.aw-home {
  background:
    radial-gradient(80rem 46rem at 50% -18rem, rgba(47, 227, 139, 0.055), transparent 65%),
    var(--aw-bg);
}

.aw-noise {
  opacity: 0.025 !important;
  mix-blend-mode: soft-light;
}

.aw-skip-link:focus {
  left: 18px !important;
}

#main:focus {
  outline: none;
}

#main > section {
  isolation: isolate;
  scroll-margin-top: 100px;
}

#main > section:not(#hero)::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(92%, 1240px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(245, 242, 235, 0.11) 20%, rgba(47, 227, 139, 0.18) 50%, rgba(245, 242, 235, 0.11) 80%, transparent);
  pointer-events: none;
}

#main h2 {
  max-width: 19ch;
}

/* Floating glass navigation */
#hdr.aw-header {
  top: 12px !important;
  left: clamp(12px, 2vw, 24px) !important;
  right: clamp(12px, 2vw, 24px) !important;
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.aw-header-shell {
  position: relative;
  display: grid !important;
  grid-template-columns: auto clamp(380px, 30vw, 440px) auto;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 9px 10px 9px 16px !important;
  flex-wrap: nowrap !important;
  gap: 12px clamp(20px, 2vw, 30px) !important;
  background: linear-gradient(135deg, rgba(20, 28, 22, 0.88), rgba(11, 15, 12, 0.78));
  border: 1px solid rgba(245, 242, 235, 0.13);
  border-radius: 20px;
  box-shadow: 0 18px 58px -32px rgba(0, 0, 0, 0.92), inset 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.aw-header-spacer {
  display: none !important;
}

.aw-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: none;
  min-height: 44px;
  padding-right: 4px;
}

.aw-logo img {
  width: 40px;
  height: 29px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(47, 227, 139, 0.15));
}

.aw-logo-live {
  display: inline-block;
  color: var(--aw-accent);
  animation: aw-wordmark-live 3.8s ease-in-out infinite;
}

@keyframes aw-wordmark-live {
  0%, 70%, 100% { opacity: 0.82; text-shadow: 0 0 0 rgba(47, 227, 139, 0); }
  82% { opacity: 1; text-shadow: 0 0 10px rgba(47, 227, 139, 0.55); }
}

.aw-desktop-nav {
  display: flex !important;
  width: max-content;
  max-width: 100%;
  flex: none;
  flex-wrap: nowrap !important;
  justify-self: center;
  gap: 42px !important;
}

.aw-desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0;
  color: rgba(245, 242, 235, 0.86) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.085em !important;
  text-align: center;
  white-space: nowrap;
}

.aw-desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: var(--aw-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.aw-header-actions {
  flex: none;
  justify-self: end;
}

.aw-header-phone,
.aw-client-login,
.aw-trial-button {
  min-height: 44px;
}

.aw-client-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  color: rgba(245, 242, 235, 0.6);
  font: 500 11.5px/1 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.045em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.aw-trial-button {
  justify-content: center;
  padding: 0 18px !important;
  box-shadow: 0 12px 34px -18px rgba(47, 227, 139, 0.7);
}

.aw-scroll-progress {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(calc(100% - 36px), 1260px);
  height: 1px;
  overflow: hidden;
  transform: translateX(-50%);
  border-radius: 999px;
  pointer-events: none;
}

.aw-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #7ecda4, var(--aw-accent));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.aw-mobile-menu {
  display: none;
  position: relative;
  flex: none;
}

.aw-mobile-menu summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 88px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--aw-line-strong);
  border-radius: 999px;
  color: var(--aw-text);
  background: rgba(245, 242, 235, 0.045);
  font: 600 13px/1 "Schibsted Grotesk", system-ui, sans-serif;
  cursor: pointer;
  list-style: none;
}

.aw-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.aw-mobile-menu summary:focus-visible {
  outline: 2px solid var(--aw-accent);
  outline-offset: 3px;
}

.aw-menu-icon {
  position: relative;
  width: 16px;
  height: 12px;
}

.aw-menu-icon::before,
.aw-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--aw-accent);
  transition: transform 180ms ease, top 180ms ease;
}

.aw-menu-icon::before { top: 2px; }
.aw-menu-icon::after { top: 9px; }

.aw-mobile-menu[open] .aw-menu-icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.aw-mobile-menu[open] .aw-menu-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.aw-mobile-menu > nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 24px));
  max-height: calc(100dvh - 100px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid rgba(245, 242, 235, 0.14);
  border-radius: 20px;
  background: rgba(14, 20, 16, 0.96);
  box-shadow: 0 28px 80px -36px rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.aw-mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  color: rgba(245, 242, 235, 0.78);
  font: 500 14px/1.3 "Schibsted Grotesk", system-ui, sans-serif;
  text-decoration: none;
}

.aw-mobile-menu nav a span {
  color: var(--aw-accent);
  font: 400 11px/1 "Fragment Mono", ui-monospace, monospace;
}

.aw-mobile-menu nav .aw-mobile-phone {
  margin-top: 8px;
  border-top: 1px solid rgba(245, 242, 235, 0.11);
  border-radius: 0;
  color: rgba(245, 242, 235, 0.86);
  font: 500 12px/1.3 "Fragment Mono", ui-monospace, monospace;
}

.aw-mobile-menu nav .aw-mobile-live-dot {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--aw-accent);
  box-shadow: 0 0 0 4px rgba(47, 227, 139, 0.1);
}

.aw-mobile-menu nav .aw-mobile-trial {
  justify-content: center;
  margin-top: 4px;
  color: #07100b;
  background: var(--aw-accent);
  font-weight: 700;
}

.aw-mobile-menu nav .aw-mobile-login {
  justify-content: center;
  min-height: 42px;
  color: rgba(245, 242, 235, 0.62);
  font-size: 12.5px;
}

/* Hero refinement */
#hero {
  background:
    radial-gradient(70% 52% at 50% 32%, rgba(47, 227, 139, 0.09), transparent 68%),
    radial-gradient(120% 85% at 50% -10%, #172119 0%, var(--aw-bg) 58%) !important;
}

#hero::before,
#hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

#hero::before {
  top: 10%;
  left: 10%;
  width: 24rem;
  height: 24rem;
  background: rgba(47, 227, 139, 0.035);
}

#hero::after {
  right: 5%;
  bottom: 18%;
  width: 18rem;
  height: 18rem;
  background: rgba(126, 205, 164, 0.026);
}

#hero-inner {
  max-width: 1140px !important;
  padding-top: clamp(132px, 17vh, 184px) !important;
}

#hero h1 {
  text-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
}

.aw-hero-kicker {
  width: auto !important;
  padding: 10px 14px;
  border: 1px solid rgba(47, 227, 139, 0.16);
  border-radius: 999px;
  background: rgba(47, 227, 139, 0.045);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.aw-live-wrap {
  max-width: 720px !important;
}

.aw-live-ring {
  animation-duration: 5.2s !important;
}

.aw-live-ring-one { opacity: 0.7; }
.aw-live-ring-two { opacity: 0.42; }

.aw-live-card {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(23, 32, 25, 0.86), rgba(11, 15, 12, 0.68)) !important;
  border-color: rgba(245, 242, 235, 0.18) !important;
  border-radius: 28px !important;
  box-shadow: 0 42px 110px -44px rgba(0, 0, 0, 0.96), 0 0 80px -56px rgba(47, 227, 139, 0.7), inset 0 1px rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(24px) saturate(120%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(120%) !important;
}

.aw-live-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 227, 139, 0.74), transparent);
  pointer-events: none;
}

.aw-live-card > * {
  position: relative;
  z-index: 1;
}

.aw-live-card > a[href^="tel:"] {
  text-shadow: 0 10px 34px rgba(47, 227, 139, 0.09);
}

.aw-wave {
  padding: 4px 0;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(47, 227, 139, 0.06), transparent);
}

.aw-hero-actions a,
.aw-final-actions a {
  min-height: 54px;
  box-shadow: 0 16px 40px -24px rgba(47, 227, 139, 0.62);
}

.aw-hero-meta {
  color: rgba(245, 242, 235, 0.56) !important;
}

.aw-hero-ticker {
  background: rgba(11, 15, 12, 0.76) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Shared editorial surfaces */
.aw-story-card,
.aw-feature-card,
.aw-proof-card > div,
.aw-price-card {
  background: linear-gradient(145deg, rgba(21, 29, 23, 0.84), rgba(11, 15, 12, 0.6)) !important;
  border-color: rgba(245, 242, 235, 0.13) !important;
  border-radius: var(--aw-radius) !important;
  box-shadow: var(--aw-shadow) !important;
}

.aw-story-card {
  position: relative;
  display: grid !important;
  grid-template-rows: auto 1fr auto;
  gap: clamp(20px, 3vw, 30px) !important;
  min-height: 350px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) !important;
  border-color: rgba(47, 227, 139, 0.2) !important;
  background:
    radial-gradient(36rem 24rem at 100% 0%, rgba(47, 227, 139, 0.075), transparent 62%),
    linear-gradient(145deg, rgba(22, 29, 24, 0.96), rgba(11, 15, 12, 0.9)) !important;
  box-shadow: 0 38px 110px -58px rgba(0, 0, 0, 0.98), inset 0 1px rgba(255, 255, 255, 0.04) !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
  transition: border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.aw-story-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 10%;
  width: 46%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(118, 233, 176, 0.82), transparent);
  pointer-events: none;
}

.aw-story-card::after {
  content: attr(data-story-index);
  position: absolute;
  right: clamp(18px, 4vw, 38px);
  bottom: clamp(4px, 1vw, 12px);
  color: rgba(245, 242, 235, 0.035);
  font: 500 italic clamp(5.4rem, 13vw, 8.5rem)/0.8 "Newsreader", Georgia, serif;
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}

.aw-story-card > * {
  position: relative;
  z-index: 1;
}

.aw-story-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.aw-story-time-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aw-story-sequence {
  color: rgba(245, 242, 235, 0.48);
  font: 400 11px/1 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.aw-story-time {
  color: var(--aw-text);
  font: 400 clamp(1.9rem, 4.6vw, 3rem)/1 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 12px 36px rgba(47, 227, 139, 0.1);
}

.aw-story-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(47, 227, 139, 0.22);
  border-radius: 999px;
  color: rgba(166, 242, 204, 0.92);
  background: rgba(47, 227, 139, 0.07);
  font: 500 10.5px/1 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.aw-story-status > span {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--aw-alert);
  box-shadow: 0 0 0 4px rgba(47, 227, 139, 0.09);
}

.aw-story-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
  align-items: end;
  gap: clamp(22px, 4vw, 52px);
}

.aw-story-card-copy h3 {
  max-width: 20ch;
  margin: 0;
  color: var(--aw-text);
  font: 500 clamp(1.65rem, 3.6vw, 2.55rem)/1.13 "Newsreader", Georgia, serif;
  letter-spacing: -0.018em;
}

.aw-story-card-copy p {
  max-width: 36ch;
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(47, 227, 139, 0.24);
  color: rgba(245, 242, 235, 0.68) !important;
  font-size: 15.5px;
  line-height: 1.65;
}

.aw-story-impact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 242, 235, 0.1);
}

.aw-story-impact span {
  color: rgba(245, 242, 235, 0.42);
  font: 400 10.5px/1 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.16em;
}

.aw-story-impact strong {
  color: rgba(245, 242, 235, 0.8);
  font: 600 13px/1.3 "Schibsted Grotesk", system-ui, sans-serif;
  text-align: right;
}

#story {
  background:
    radial-gradient(52rem 38rem at 68% 52%, rgba(47, 227, 139, 0.035), transparent 68%),
    var(--aw-bg) !important;
}

#story-stage {
  perspective: 1400px;
}

#story-prog {
  background: linear-gradient(90deg, var(--aw-alert), var(--aw-accent)) !important;
  box-shadow: 0 0 18px rgba(47, 227, 139, 0.22);
}

.aw-feature-grid {
  gap: 20px !important;
}

.aw-feature-card {
  min-height: 248px;
  justify-content: flex-start;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.aw-feature-card h3 {
  letter-spacing: -0.012em;
}

.aw-feature-card p,
.aw-story-card p:last-child,
.aw-price-card li {
  color: var(--aw-muted) !important;
}

.aw-proof-grid {
  gap: clamp(22px, 3vw, 36px) !important;
}

.aw-proof-card {
  isolation: isolate;
}

.aw-proof-card > div {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.aw-stat-grid {
  gap: 18px !important;
}

.aw-stat {
  min-height: 220px;
  padding: 24px !important;
  border: 1px solid rgba(245, 242, 235, 0.12) !important;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(21, 29, 23, 0.64), rgba(11, 15, 12, 0.38));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.03);
}

.aw-stat > span {
  color: var(--aw-text) !important;
  text-shadow: 0 12px 38px rgba(47, 227, 139, 0.08);
}

.aw-stat p {
  color: var(--aw-muted) !important;
}

.aw-comparison {
  overflow: hidden;
  border: 1px solid rgba(245, 242, 235, 0.12) !important;
  border-radius: 22px;
  background: rgba(245, 242, 235, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.aw-comparison > div {
  padding: 20px 22px !important;
}

.aw-comparison > div:last-child {
  background: linear-gradient(90deg, rgba(47, 227, 139, 0.1), rgba(47, 227, 139, 0.025)) !important;
}

.aw-pricing-layout {
  align-items: center !important;
}

.aw-price-card {
  padding: clamp(30px, 4vw, 44px) !important;
  backdrop-filter: blur(20px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(115%) !important;
}

.aw-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  right: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 227, 139, 0.9), transparent);
}

.aw-price-card > a {
  min-height: 54px;
  box-shadow: 0 18px 42px -22px rgba(47, 227, 139, 0.78);
}

/* Accordions */
.aw-accordion {
  padding: 8px;
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(21, 29, 23, 0.52), rgba(11, 15, 12, 0.32));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.aw-accordion > div {
  border: 0 !important;
}

.aw-accordion > div + div {
  border-top: 1px solid rgba(245, 242, 235, 0.09) !important;
}

.aw-accordion button {
  min-height: 70px !important;
  padding: 18px 16px !important;
  border-radius: 15px !important;
  transition: color 180ms ease, background 180ms ease !important;
}

.aw-accordion button > span:last-child {
  width: 36px !important;
  height: 36px !important;
  background: rgba(47, 227, 139, 0.055);
}

.aw-accordion button:focus-visible {
  outline: 2px solid var(--aw-accent) !important;
  outline-offset: 2px !important;
  background: rgba(47, 227, 139, 0.07) !important;
}

.aw-accordion sc-if > div,
.aw-accordion > div > div[id] {
  padding: 0 64px 24px 16px !important;
}

/* Closing section and footer */
#try {
  background:
    radial-gradient(58% 45% at 50% 54%, rgba(47, 227, 139, 0.09), transparent 72%),
    var(--aw-bg) !important;
}

.aw-final-inner {
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid rgba(245, 242, 235, 0.1);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(21, 29, 23, 0.52), rgba(11, 15, 12, 0.2));
  box-shadow: 0 42px 120px -72px rgba(47, 227, 139, 0.55), inset 0 1px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#try .aw-final-inner > a[href^="tel:"] {
  font-size: clamp(2rem, 8.8vw, 7.2rem) !important;
}

footer[data-screen-label="Footer"] {
  background: linear-gradient(180deg, var(--aw-bg), #090c0a) !important;
}

.aw-footer-grid {
  gap: clamp(28px, 4vw, 52px) !important;
}

.aw-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.aw-footer-logo img {
  width: 32px;
  height: 23px;
  object-fit: contain;
  filter: drop-shadow(0 5px 13px rgba(47, 227, 139, 0.12));
}

.aw-footer-grid a {
  min-height: 28px;
}

.aw-footer-grid nav > p,
.aw-footer-grid > div > p:first-child {
  color: rgba(245, 242, 235, 0.55) !important;
}

@media (hover: hover) and (pointer: fine) {
  .aw-desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .aw-client-login:hover { color: var(--aw-text); background: rgba(245, 242, 235, 0.07); }
  .aw-mobile-menu nav a:hover { color: var(--aw-text); background: rgba(245, 242, 235, 0.055); }
  .aw-mobile-menu nav .aw-mobile-trial:hover { color: #07100b; background: #4befa0; }
  .aw-mobile-menu nav .aw-mobile-login:hover { color: var(--aw-text); background: rgba(245, 242, 235, 0.055); }
  .aw-feature-card:hover { border-color: rgba(47, 227, 139, 0.3) !important; box-shadow: 0 34px 96px -54px rgba(47, 227, 139, 0.28), inset 0 1px rgba(255, 255, 255, 0.045) !important; }
  .aw-story-card:hover { border-color: rgba(47, 227, 139, 0.34) !important; }
  .aw-accordion button:hover { color: var(--aw-accent) !important; background: rgba(47, 227, 139, 0.05) !important; }
}

@media (max-width: 1180px) {
  .aw-header-phone { display: none !important; }
}

@media (max-width: 1120px) {
  .aw-header-shell {
    display: flex !important;
    justify-content: initial;
    gap: 12px 14px !important;
  }
  .aw-header-spacer { display: block !important; flex: 1; }
  .aw-desktop-nav { display: none !important; }
  .aw-mobile-menu { display: block; }
}

@media (max-width: 960px) {
  #story-stage {
    gap: 18px !important;
    perspective: none;
  }

  .aw-story-card {
    min-height: 0;
  }

  .aw-story-card-copy {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  .aw-story-card-copy p {
    max-width: 52ch;
  }
}

@media (max-width: 900px) {
  #main > section:not(#hero) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .aw-proof-card {
    transform: none !important;
  }

  .aw-stat {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 88px; }

  #hdr.aw-header {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }

  .aw-header-shell {
    min-height: 58px;
    padding: 6px 7px 6px 12px !important;
    border-radius: 17px;
  }

  .aw-logo { min-height: 44px; gap: 11px; font-size: 18px !important; }
  .aw-logo img { width: 36px; height: 26px; border-radius: 0; }
  .aw-client-login { display: none; }
  .aw-trial-button { min-height: 44px; padding: 0 14px !important; font-size: 12.5px !important; }

  #hero-inner {
    padding: 116px 18px 108px !important;
  }

  .aw-hero-kicker {
    padding: 9px 11px;
    gap: 8px !important;
  }

  .aw-live-card {
    padding: 24px 20px !important;
    border-radius: 24px !important;
  }

  .aw-live-ring-two { display: none; }

  .aw-hero-actions,
  .aw-final-actions {
    width: 100%;
    flex-direction: column;
  }

  .aw-hero-actions a,
  .aw-final-actions a {
    width: min(100%, 420px);
  }

  .aw-feature-card {
    min-height: 0;
    padding: 24px 22px !important;
  }

  .aw-story-card {
    padding: 24px 22px !important;
    gap: 22px !important;
  }

  .aw-comparison > div {
    padding: 18px !important;
  }

  .aw-final-inner {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .aw-accordion {
    padding: 5px;
    border-radius: 18px;
  }

  .aw-accordion button {
    min-height: 64px !important;
    padding: 15px 12px !important;
    font-size: 16px !important;
  }

  .aw-accordion sc-if > div,
  .aw-accordion > div > div[id] {
    padding: 0 48px 22px 12px !important;
  }
}

@media (max-width: 560px) {
  html.aw-menu-open { overflow: hidden; }
  .aw-header-actions { display: none !important; }
  .aw-header-spacer { display: block; }
  .aw-mobile-menu > nav { right: -1px; }

  .aw-hero-kicker > span:nth-child(2) { display: none; }
  .aw-hero-kicker > span { font-size: 10.5px !important; letter-spacing: 0.12em !important; }
  .aw-live-ring { display: none; }

  .aw-live-card > div:first-of-type > span:last-child {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
  }

  .aw-story-card-header {
    flex-direction: column;
    gap: 14px;
  }

  .aw-story-status {
    align-self: flex-start;
  }

  .aw-story-time {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .aw-story-card-copy h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .aw-story-card-copy p {
    padding-left: 12px;
  }

  .aw-story-impact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .aw-story-impact strong {
    text-align: left;
  }

  .aw-hero-meta { max-width: 30ch; }
  .aw-stat { padding: 21px !important; border-radius: 19px; }
  .aw-price-card { padding: 26px 22px !important; border-radius: 21px !important; }
  .aw-footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-height: 760px) {
  #hero > div[aria-hidden="true"][style*="bottom:64px"] { display: none !important; }
}

@media (max-width: 960px), (max-height: 560px), (prefers-reduced-motion: reduce) {
  #story-stage {
    height: auto !important;
    min-height: 0 !important;
  }

  #story-stage [data-story-panel],
  #story-punch {
    position: relative !important;
    inset: auto !important;
    max-width: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aw-logo-live { animation: none !important; opacity: 1; }
  .aw-scroll-progress span,
  .aw-menu-icon::before,
  .aw-menu-icon::after,
  .aw-desktop-nav a::after {
    transition: none !important;
  }
}

/* Keeps the public trial handoff simple, accessible, and visually aligned with the dark editorial site. */
.aw-trial-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 144px) clamp(20px, 5vw, 56px);
  background:
    radial-gradient(70% 100% at 100% 0%, rgba(47, 227, 139, 0.09), transparent 62%),
    #0e1410;
  border-block: 1px solid rgba(245, 242, 235, 0.1);
}

.aw-trial-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: start;
}

.aw-trial-copy {
  position: sticky;
  top: 120px;
}

.aw-trial-eyebrow {
  margin: 0 0 20px;
  font: 400 11px/1.4 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.18em;
  color: #2fe38b;
}

.aw-trial-copy h2 {
  margin: 0;
  max-width: 9ch;
  font: 500 clamp(2.7rem, 6vw, 5.2rem)/0.98 "Newsreader", Georgia, serif;
  letter-spacing: -0.025em;
  color: #f5f2eb;
}

.aw-trial-copy > p:not(.aw-trial-eyebrow) {
  max-width: 46ch;
  margin: 24px 0 0;
  color: rgba(245, 242, 235, 0.66);
}

.aw-trial-copy .aw-trial-note {
  padding-left: 14px;
  border-left: 2px solid rgba(47, 227, 139, 0.7);
  font-size: 14px;
  color: rgba(245, 242, 235, 0.52);
}

.aw-trial-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(245, 242, 235, 0.15);
  border-radius: 24px;
  background: rgba(11, 15, 12, 0.72);
  box-shadow: 0 32px 90px -52px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.aw-trial-field {
  display: grid;
  gap: 8px;
}

.aw-trial-field label {
  font: 400 11px/1.3 "Fragment Mono", ui-monospace, monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 242, 235, 0.62);
}

.aw-trial-field input {
  width: 100%;
  min-height: 52px;
  box-sizing: border-box;
  border: 1px solid rgba(245, 242, 235, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  background: rgba(245, 242, 235, 0.045);
  color: #f5f2eb;
  font: 500 16px/1.3 "Schibsted Grotesk", system-ui, sans-serif;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.aw-trial-field input:hover {
  border-color: rgba(245, 242, 235, 0.34);
}

.aw-trial-field input:focus {
  outline: none;
  border-color: #2fe38b;
  background: rgba(245, 242, 235, 0.07);
  box-shadow: 0 0 0 3px rgba(47, 227, 139, 0.12);
}

.aw-trial-submit {
  grid-column: 1 / -1;
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  cursor: pointer;
  background: #2fe38b;
  color: #0b0f0c;
  font: 700 15px/1 "Schibsted Grotesk", system-ui, sans-serif;
  transition: background 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.aw-trial-submit:hover:not(:disabled) {
  background: #54eea2;
  transform: translateY(-1px);
}

.aw-trial-submit:disabled {
  cursor: wait;
  opacity: 0.62;
}

.aw-trial-consent,
.aw-trial-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(245, 242, 235, 0.46);
}

.aw-trial-status {
  min-height: 1.6em;
  color: #8df1bb;
}

.aw-trial-status[data-error="true"] {
  color: #ffb6aa;
}

.aw-trial-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 820px) {
  .aw-trial-shell {
    grid-template-columns: 1fr;
  }

  .aw-trial-copy {
    position: static;
  }

  .aw-trial-copy h2 {
    max-width: 12ch;
  }
}

@media (max-width: 560px) {
  .aw-trial-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}
