:root {
  color-scheme: light;
  --ink: #152033;
  --muted: #526173;
  --line: #d7e1eb;
  --panel: #ffffff;
  --panel-soft: #f7fafc;
  --brand: #2457d6;
  --brand-dark: #173b95;
  --green: #21865d;
  --orange: #c96c23;
  --sky: #eaf4ff;
  --gold: #fff2cf;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--brand);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: 42px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  text-decoration: none;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a.is-active {
  color: var(--ink);
  background: #f3f4f6;
  border-color: #e5e7eb;
}

.nav-links .nav-button,
.footer-links .nav-button {
  min-height: 36px;
  padding: 8px 14px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--brand);
  font-weight: 800;
}

.nav-links .nav-button:hover,
.footer-links .nav-button:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.95), rgba(255, 242, 207, 0.75)),
    #f8fbff;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 44px;
  padding-top: 76px;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 5.8vw, 3.9rem);
}

.hero-logo {
  width: min(480px, 82vw);
  height: auto;
  display: block;
  margin: 0 0 18px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

p {
  margin-top: 0;
}

.lede {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.18rem;
}

.question-link {
  margin-bottom: 24px;
  font-size: 1rem;
  font-weight: 700;
}

.rotating-line {
  min-height: var(--rotating-line-reserved-height, 10.4rem);
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--brand-dark);
  font-size: clamp(1.25rem, 3vw, 1.9rem);
  font-weight: 850;
  line-height: 1.35;
}

.rotating-line-row {
  display: block;
}

.language-rotator-term {
  display: inline-block;
  transform-origin: 50% 70%;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
  will-change: opacity, transform;
}

.language-speaking-unit {
  white-space: nowrap;
}

.language-rotator-l1 {
  color: var(--green);
}

.language-rotator-l2 {
  color: var(--orange);
}

.language-rotator-term.is-changing {
  opacity: 0;
  transform: translateY(-0.55rem) rotateX(78deg);
}

.actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button-primary {
  background: var(--brand);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-green {
  background: var(--green);
}

.button-orange {
  background: var(--orange);
}

.hero-card,
.card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.hero-card {
  padding: 28px;
}

.hero-card ul,
.list {
  margin: 0;
  padding-left: 20px;
}

.hero-card .check-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-card li,
.list li {
  margin-bottom: 8px;
}

.section {
  padding: 76px 0;
}

.section-alt {
  background: var(--panel-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-tight-top {
  padding-top: 44px;
  border-top: 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: 34px;
}

.split-section-reverse {
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
}

.split-section-copy {
  grid-template-columns: minmax(0, 820px);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.plan-card-featured {
  border-color: rgba(36, 87, 214, 0.45);
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.plan-name {
  color: var(--brand-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.plan-price {
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.1;
}

.plan-seat-count {
  color: var(--muted);
  font-weight: 800;
}

.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.plan-card-action {
  width: fit-content;
  margin-top: auto;
}

.benefit-band {
  margin-top: 22px;
  padding: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.benefit-band-copy {
  grid-template-columns: 1fr;
}

.benefit-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.benefit-list.check-list {
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.benefit-list li {
  margin-bottom: 8px;
}

.benefit-list.check-list li {
  margin-bottom: 0;
}

.feature-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-catalog-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.feature-catalog-card h3 {
  margin-bottom: 0;
}

.feature-catalog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-catalog-card--wide {
  grid-column: 1 / -1;
}

.feature-catalog-count {
  width: fit-content;
  min-width: 44px;
  min-height: 34px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-chip-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.feature-chip-list li {
  padding: 7px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(36, 87, 214, 0.18);
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--sky);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.feature-chip-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  border-radius: 999px;
  color: #ffffff;
  background: var(--brand);
  font-size: 0;
  line-height: 1;
  text-align: center;
}

.feature-chip-icon::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.82rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.feature-chip-list--compact li {
  padding: 6px 9px;
  color: var(--muted);
  background: #ffffff;
  font-size: 0.82rem;
}

.feature-catalog-plus {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, var(--sky));
}

.feature-catalog-plus h3 {
  margin-bottom: 16px;
}

.feature-catalog-plus .check-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 28px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-row-copy {
  grid-template-columns: 1fr;
}

.feature-row-reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1fr);
}

.feature-row-reverse > div:first-child {
  order: 2;
}

.feature-row-reverse > div:last-child {
  order: 1;
}

.feature-row p {
  color: var(--muted);
}

.image-placeholder {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed #8ea4bd;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.78), rgba(255, 242, 207, 0.56)),
    #ffffff;
  color: var(--brand-dark);
  text-align: center;
}

.image-placeholder span {
  font-weight: 900;
}

.image-placeholder small {
  max-width: 220px;
  color: var(--muted);
  font-weight: 700;
}

.feedback-editor-placeholder {
  min-height: 320px;
}

.workflow-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(21, 32, 51, 0.12);
}

.skill-grid,
.skill-showcase {
  display: grid;
  gap: 18px;
}

.skill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.skill-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.skill-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.skill-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.skill-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-weight: 900;
}

.skill-card p {
  color: var(--muted);
}

.skill-row p {
  color: var(--muted);
}

.additional-features-eyebrow {
  margin-top: 34px;
}

.feature-subsections {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.feature-subsection-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.feature-subsection-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--brand));
  border-radius: 0 0 999px 999px;
}

.feature-subsection-image {
  width: 100%;
  max-width: 1254px;
  height: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.feature-subsection-copy {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.feature-subsection-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-size: 1.25rem;
}

.feature-subsection-card h3 {
  margin-bottom: 8px;
}

.feature-subsection-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.lesson-widget {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.widget-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.widget-bar strong {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--sky);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.video-frame {
  min-height: 150px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 87, 214, 0.18), rgba(33, 134, 93, 0.18)),
    #edf4fb;
}

.video-avatar {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.recording-dot {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 14px;
  right: 14px;
  border-radius: 50%;
  background: #d93025;
  box-shadow: 0 0 0 5px rgba(217, 48, 37, 0.12);
}

.audio-wave {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.audio-wave span {
  width: 8px;
  min-height: 14px;
  border-radius: 999px;
  background: var(--brand);
}

.audio-wave span:nth-child(2),
.audio-wave span:nth-child(5) {
  min-height: 30px;
}

.audio-wave span:nth-child(3) {
  min-height: 42px;
}

.audio-wave span:nth-child(4) {
  min-height: 24px;
}

.widget-prompt {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.play-button {
  width: 100%;
  min-height: 52px;
  margin-bottom: 14px;
  border: 0;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--green);
  font: inherit;
  font-weight: 900;
}

.play-button-small {
  min-height: 44px;
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-list label {
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-weight: 700;
}

.reading-widget mark {
  padding: 1px 4px;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
}

.annotation,
.feedback-note {
  margin: 12px 0;
  padding: 10px 12px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--sky);
  color: var(--ink);
  font-weight: 800;
}

.text-answer {
  min-height: 110px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.ai-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(21, 32, 51, 0.08);
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--orange));
  border-radius: 0 0 999px 999px;
}

.ai-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.ai-feature-image {
  width: 100%;
  max-width: 1254px;
  height: auto;
  min-height: 0;
  margin: 0 auto;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.ai-card > div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.ai-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.ai-demo-widget {
  background: #ffffff;
}

.transcript-wave {
  justify-content: flex-start;
}

.transcript-box,
.script-card,
.prompt-chip,
.scan-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-soft);
}

.transcript-box p {
  margin: 5px 0 0;
  color: var(--ink);
}

.script-card {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.prompt-chip {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-weight: 900;
}

.generated-list {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 750;
}

.scan-card {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.scan-card span {
  display: grid;
  place-items: center;
  border: 1px dashed #8ea4bd;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.link-band {
  background: var(--sky);
}

.link-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.link-band h2 {
  margin-bottom: 8px;
}

.link-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.card {
  padding: 24px;
}

.card p {
  color: var(--muted);
}

.card-highlight {
  margin-top: 16px;
  padding: 14px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--sky);
  color: var(--ink);
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.step-number {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  font-weight: 900;
}

.cta {
  text-align: center;
}

.cta p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.08rem;
}

.cta-actions {
  justify-content: center;
  margin-top: 26px;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  color: var(--ink);
  font-size: 1.05rem;
}

.footer-brand .brand-icon {
  width: 26px;
  height: 26px;
}

.footer-links {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.page-hero {
  padding: 74px 0 48px;
  background: var(--sky);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.faq-section {
  padding: 56px 0 80px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-group-title {
  margin: 28px 0 4px;
  font-size: 1.15rem;
  color: var(--ink);
}

.faq-group-title:first-child {
  margin-top: 0;
}

.faq-item {
  overflow: hidden;
  box-shadow: none;
}

.faq-question {
  width: 100%;
  min-height: 62px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-icon {
  flex: 0 0 auto;
  color: var(--brand);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-answer p:last-child,
.faq-answer ul:last-child {
  margin-bottom: 0;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .rotating-line {
    min-height: var(--rotating-line-reserved-height, 10.4rem);
  }
}

@media (max-width: 860px) {
  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 52px;
  }

  .rotating-line {
    min-height: var(--rotating-line-reserved-height, 9.6rem);
  }

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

  .grid-4,
  .skill-grid,
  .skill-showcase,
  .skill-row,
  .feature-subsections,
  .ai-grid,
  .feature-catalog,
  .feature-catalog-plus .check-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .split-section,
  .plan-grid,
  .benefit-band,
  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
  }

  .feature-row-reverse > div:first-child,
  .feature-row-reverse > div:last-child {
    order: initial;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .link-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container,
  .nav {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .actions,
  .cta-actions {
    flex-direction: column;
  }

  .scan-card {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
