@import "https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css";

:root {
  --fd-navy: #071a2f;
  --fd-ink: #0b1220;
  --fd-panel: #ffffff;
  --fd-muted: #627085;
  --fd-line: #dce3ee;
  --fd-yellow: #ffcc00;
  --fd-blue: #2384ff;
  --fd-green: #20b486;
  --fd-coral: #f05b5b;
  --fd-soft: #f6f8fb;
}

html {
  background: var(--fd-navy);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--fd-soft);
  color: var(--fd-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

header,
.navbar,
.navbar-brand,
.navbar-menu {
  background: var(--fd-navy);
}

.navbar {
  min-height: 88px;
  padding: 16px clamp(18px, 4vw, 56px);
}

.navbar-brand {
  align-items: center;
}

.navbar-brand > .navbar-item {
  padding: 0;
}

.navbar-brand > .navbar-item img {
  max-height: 56px;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  letter-spacing: 0;
}

p {
  color: inherit;
  line-height: 1.65;
}

a {
  color: inherit;
}

.button {
  border-radius: 8px;
  font-weight: 700;
  min-height: 44px;
}

.button.is-info {
  background: var(--fd-yellow);
  border-color: var(--fd-yellow);
  color: var(--fd-ink);
}

.button.is-info:hover,
.button.is-info:focus {
  background: #f2c200;
  border-color: #f2c200;
  color: var(--fd-ink);
}

.button.is-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--fd-ink);
}

.button.is-light:hover,
.button.is-light:focus {
  background: #edf3fb;
  border-color: #edf3fb;
  color: var(--fd-ink);
}

.button.is-danger {
  background: var(--fd-coral);
  border-color: var(--fd-coral);
  color: #ffffff;
}

.button.is-danger:hover,
.button.is-danger:focus {
  background: #dc4e4e;
  border-color: #dc4e4e;
  color: #ffffff;
}

.landing-nav {
  padding: 16px clamp(18px, 4vw, 56px);
}

.hero-section .landing-nav,
.hero-section .navbar-brand,
.hero-section .navbar-menu {
  background: transparent;
}

.hero-section .landing-nav {
  align-self: stretch;
  position: relative;
  width: 100%;
  z-index: 3;
}

.landing-nav .navbar-item img {
  max-height: 56px;
}

.navbar-brand > .navbar-item,
.navbar-brand > .navbar-item:hover,
.navbar-brand > .navbar-item:focus,
.navbar-brand > .navbar-item:focus-visible,
.navbar-brand > .navbar-item:active,
.landing-logo-link,
.landing-logo-link:hover,
.landing-logo-link:focus {
  background: transparent !important;
  cursor: pointer;
}

.landing-nav-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-nav-links > a:not(.button) {
  color: #dfe7f2;
  font-weight: 700;
  text-decoration: none;
}

.landing-nav-links > a:not(.button):hover,
.landing-nav-links > a:not(.button):focus {
  color: #ffffff;
}

.account-nav-links {
  justify-content: flex-end;
}

.landing-page {
  background: var(--fd-soft);
}

.auth-footer {
  align-items: center;
  background: var(--fd-navy);
  color: #dfe7f2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 24px clamp(18px, 4vw, 56px);
}

.auth-footer a {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover,
.auth-footer a:focus {
  color: #ffffff;
}

.legal-page {
  background: var(--fd-soft);
  min-height: calc(100vh - 72px);
}

.legal-nav {
  background: var(--fd-navy);
}

.legal-content {
  background: #ffffff;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 26, 47, 0.08);
  margin: clamp(24px, 5vw, 64px) auto;
  max-width: 900px;
  padding: clamp(28px, 5vw, 56px);
}

.legal-content h1 {
  color: var(--fd-ink);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px;
}

.legal-content h2 {
  color: var(--fd-ink);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 30px 0 10px;
}

.legal-content p,
.legal-content li {
  color: var(--fd-muted);
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 18px 22px;
}

.legal-content a {
  color: var(--fd-blue);
  font-weight: 800;
}

.signup-page {
  align-items: center;
  background: var(--fd-navy);
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  padding: clamp(34px, 7vw, 80px) clamp(18px, 5vw, 64px);
  position: relative;
}

.signup-panel {
  background: #ffffff;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 26, 47, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  max-width: 980px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.auth-panel--compact {
  max-width: 860px;
}

.signup-copy {
  background: var(--fd-navy);
  color: #ffffff;
  padding: clamp(30px, 5vw, 54px);
}

.auth-eyebrow {
  color: var(--fd-yellow);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.signup-copy .title {
  color: #ffffff;
  line-height: 1.04;
  margin-bottom: 18px;
}

.signup-copy p:not(.auth-eyebrow) {
  color: #dce8f6;
  font-size: 1.05rem;
}

.signup-form {
  padding: clamp(28px, 5vw, 52px);
}

.signup-form .field {
  margin-bottom: 16px;
}

.signup-form .control {
  position: relative;
}

.signup-form .input {
  background-color: #ffffff !important;
  border-color: #cbd7e6;
  box-shadow: none;
  color: var(--fd-ink) !important;
  height: 48px;
  min-height: 48px;
}

.signup-form .input::placeholder {
  color: #7b8798;
  opacity: 1;
}

.signup-form .input:focus {
  border-color: var(--fd-blue);
  box-shadow: 0 0 0 3px rgba(35, 132, 255, 0.14);
}

.signup-form .input.is-danger {
  border-color: var(--fd-coral);
}

.signup-form .control.has-icons-left .icon,
.signup-form .control.has-icons-right .icon {
  align-items: center;
  color: #7b8798;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  top: 0;
}

.signup-form .button {
  margin-top: 8px;
}

.auth-form-link {
  color: var(--fd-muted);
  font-weight: 700;
  margin-top: 18px;
  text-align: center;
}

.auth-form-link a {
  color: var(--fd-blue);
  text-decoration: none;
}

.auth-form-link a:hover,
.auth-form-link a:focus {
  color: #0d6ee7;
  text-decoration: underline;
}

.account-page {
  align-items: center;
  background: var(--fd-navy);
  display: flex;
  justify-content: center;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  padding: clamp(34px, 7vw, 80px) clamp(18px, 5vw, 64px);
  position: relative;
}

.account-shell {
  background: #ffffff;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(7, 26, 47, 0.16);
  max-width: 1040px;
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  width: 100%;
  z-index: 1;
}

.account-heading {
  margin: 0 auto 28px;
  max-width: 760px;
  text-align: center;
}

.account-heading .title {
  color: var(--fd-ink);
  line-height: 1.04;
  margin-bottom: 12px;
}

.account-heading p:not(.auth-eyebrow) {
  color: var(--fd-muted);
  font-size: 1.05rem;
}

.account-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 22px;
}

.account-card {
  background: var(--fd-soft);
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  padding: 24px;
}

.account-card-icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  color: var(--fd-blue);
  display: inline-flex;
  font-size: 1.2rem;
  height: 44px;
  justify-content: center;
  margin-bottom: 16px;
  width: 44px;
}

.account-label {
  color: var(--fd-blue);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.account-card h2 {
  color: var(--fd-ink);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.14;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.account-card p:not(.account-label) {
  color: var(--fd-muted);
}

.account-usage {
  margin-top: 18px;
}

.account-usage-summary {
  align-items: baseline;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.account-usage-summary span {
  color: var(--fd-muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.account-usage-summary strong {
  color: var(--fd-ink);
  font-size: 0.95rem;
  text-align: right;
}

.account-usage-meter {
  background: #dfe7ef;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.account-usage-meter span {
  background: var(--fd-blue);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.account-usage-note {
  font-size: 0.9rem;
  margin-top: 8px;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0;
}

.account-danger-zone {
  align-items: center;
  background: #fff6f6;
  border: 1px solid rgba(240, 91, 91, 0.24);
  border-radius: 8px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 28px;
  padding: 20px;
}

.account-danger-zone h2 {
  color: var(--fd-ink);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.account-danger-zone p {
  color: var(--fd-muted);
  margin: 0;
}

.hero-section {
  align-items: center;
  background: var(--fd-navy);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
}

.hero-section::before {
  content: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin: 0 auto;
  max-width: 940px;
  padding: clamp(42px, 7vw, 86px) clamp(22px, 5vw, 72px) clamp(58px, 8vw, 100px);
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--fd-yellow);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  background: var(--fd-yellow);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 3px;
  width: 42px;
}

.hero-copy .title {
  color: #ffffff;
  font-size: clamp(2.65rem, 5.4vw, 5.55rem);
  line-height: 0.95;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  max-width: 880px;
}

.hero-audience {
  color: #ffdf4a;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 900;
  line-height: 1.38;
  margin: -4px auto 28px;
  max-width: 740px;
}

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

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

.hero-actions .button i {
  margin-left: 8px;
}

.hero-proof {
  color: #d6e2f0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 22px;
}

.hero-proof span {
  align-items: center;
  display: inline-flex;
  font-weight: 700;
  gap: 8px;
}

.hero-proof i,
.check-list i,
.pricing-card li i {
  color: var(--fd-green);
}

.hero-circuit-bg {
  animation: circuitHue 8s linear infinite;
  height: 100%;
  inset: 0;
  opacity: 0.86;
  pointer-events: none;
  position: absolute;
  width: 100%;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0 32%, rgba(0, 0, 0, 0.32) 48%, #000 76%);
  mask-image: radial-gradient(ellipse at center, transparent 0 32%, rgba(0, 0, 0, 0.32) 48%, #000 76%);
  z-index: 1;
}

.circuit-layer {
  fill: none;
  filter: url(#circuitGlow);
  stroke: url(#circuitGradient);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-circuit-bg {
  opacity: 0.72;
  z-index: 0;
}

.auth-circuit-bg .auth-circuit-layer {
  filter: url(#authCircuitGlow);
  stroke: url(#authCircuitGradient);
}

.auth-circuit-bg .circuit-nodes circle,
.auth-circuit-bg .circuit-pulses circle {
  filter: url(#authCircuitGlow);
}

.circuit-layer--back {
  opacity: 0.34;
  stroke-width: 2.4;
}

.circuit-layer--front {
  animation: circuitTrace 2.8s linear infinite;
  opacity: 0.78;
  stroke-dasharray: 28 18;
  stroke-width: 3.4;
}

.circuit-nodes circle {
  animation: nodeGlow 2.4s ease-in-out infinite;
  fill: #071a2f;
  filter: url(#circuitGlow);
  stroke: #ffdf4a;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
}

.circuit-nodes circle:nth-child(3n + 1) {
  animation-delay: -0.9s;
  stroke: #20b486;
}

.circuit-nodes circle:nth-child(3n + 2) {
  animation-delay: -1.8s;
  stroke: #2384ff;
}

.circuit-pulses circle {
  animation: pulseColor 2.6s ease-in-out infinite;
  fill: #ffffff;
  filter: url(#circuitGlow);
  opacity: 0.95;
}

@keyframes circuitTrace {
  to {
    stroke-dashoffset: -92;
  }
}

@keyframes circuitHue {
  to {
    filter: hue-rotate(360deg);
  }
}

@keyframes nodeGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes pulseColor {
  0%,
  100% {
    fill: #2ea7ff;
  }
  35% {
    fill: #20f0b0;
  }
  70% {
    fill: #ffdd2e;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-circuit-bg,
  .circuit-layer--front,
  .circuit-nodes circle,
  .circuit-pulses circle {
    animation: none;
  }

  .circuit-pulses {
    display: none;
  }
}

.problem-section,
.workflow-section,
.pricing-section,
.faq-section,
.desktop-section,
.final-cta {
  padding: clamp(52px, 8vw, 96px) clamp(18px, 6vw, 88px);
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 790px;
  text-align: center;
}

.section-heading .title,
.desktop-section .title,
.final-cta .title {
  color: var(--fd-ink);
}

.section-heading p:not(.eyebrow),
.desktop-section p,
.final-cta p {
  color: var(--fd-muted);
  font-size: 1.05rem;
}

.value-grid,
.workflow-steps,
.pricing-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 1180px;
}

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

.value-grid article,
.workflow-steps div,
.pricing-card,
.faq-grid article {
  background: #ffffff;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  padding: 28px;
}

.value-grid article > i {
  align-items: center;
  background: var(--fd-soft);
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  color: var(--fd-blue);
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 20px;
  width: 48px;
}

.value-grid h3,
.workflow-steps h3,
.pricing-card h3,
.faq-grid h3 {
  color: var(--fd-ink);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.value-grid p,
.workflow-steps p,
.pricing-card p,
.faq-grid p {
  color: var(--fd-muted);
}

.workflow-section,
.faq-section {
  background: #ffffff;
}

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

.workflow-steps span {
  align-items: center;
  background: var(--fd-yellow);
  border-radius: 50%;
  color: var(--fd-ink);
  display: inline-flex;
  font-weight: 900;
  height: 38px;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}

.desktop-section {
  align-items: center;
  background: var(--fd-navy);
  color: #ffffff;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
}

.desktop-section .title {
  color: #ffffff;
}

.desktop-section .eyebrow {
  color: #ffffff;
}

.desktop-section .eyebrow::before,
.desktop-section .eyebrow::after {
  background: #ffffff;
}

.desktop-section p {
  color: #dce8f6;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.check-list li {
  align-items: center;
  color: #f6f9ff;
  display: flex;
  font-weight: 700;
  gap: 10px;
}

.desktop-visual {
  display: flex;
  justify-content: center;
}

.desktop-shell {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color: var(--fd-ink);
  max-width: 460px;
  overflow: hidden;
  width: 100%;
}

.window-bar {
  align-items: center;
  background: #edf2f8;
  display: flex;
  gap: 7px;
  height: 34px;
  padding: 0 14px;
}

.window-bar span {
  background: var(--fd-line);
  border-radius: 50%;
  display: block;
  height: 10px;
  width: 10px;
}

.window-bar span:nth-child(1) {
  background: var(--fd-coral);
}

.window-bar span:nth-child(2) {
  background: var(--fd-yellow);
}

.window-bar span:nth-child(3) {
  background: var(--fd-green);
}

.desktop-shell-body {
  padding: 24px;
}

.transfer-preview {
  background: #f6f8fb;
  display: grid;
  gap: 0;
}

.app-transfer-card {
  background: #ffffff;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-top: 14px;
  min-height: 72px;
  padding: 12px 42px 12px 12px;
  position: relative;
}

.app-transfer-card:first-of-type {
  margin-top: 0;
}

.app-transfer-card h3 {
  color: var(--fd-ink);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 7px;
  overflow-wrap: anywhere;
}

.app-transfer-card button {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #292a2d;
  display: inline-flex;
  font-size: 20px;
  height: 24px;
  justify-content: center;
  line-height: 1;
  opacity: 0.55;
  padding: 0;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 24px;
}

.app-status-line {
  color: #666666;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.app-status-line.ready {
  color: #3798ff;
}

.app-status-line.complete {
  color: #6fb234;
}

.app-status-line.complete strong {
  color: inherit;
}

.app-email-container {
  background: rgba(0, 0, 0, 0.72);
  border-radius: 0 0 4px 4px;
  padding: 9px 10px 10px;
}

.app-email-container + .app-transfer-card {
  margin-top: 14px;
}

.app-recipient-line {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}

.app-recipient-line p,
.app-progress-text {
  color: #f2f4f4;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  opacity: 0.82;
}

.app-recipient-dot {
  background: #6fb234;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(111, 178, 52, 0.12);
  display: block;
  height: 9px;
  width: 9px;
}

.app-progress-bar {
  background: #dfe0e1;
  height: 10px;
  overflow: hidden;
}

.app-progress-bar span {
  background: #3798ff;
  display: block;
  height: 100%;
  width: 72%;
}

.app-progress-bar.progress-43 span {
  width: 43%;
}

.app-progress-bar.progress-28 span {
  width: 28%;
}

.app-progress-bar.is-complete span {
  background: #6fb234;
  width: 100%;
}

.app-progress-text {
  margin-top: 5px;
}

.app-progress-text.is-complete {
  color: #6fb234;
  opacity: 1;
}

.folder-stack,
.disk-target {
  align-items: center;
  border: 1px solid var(--fd-line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px;
}

.folder-stack i,
.disk-target i {
  color: var(--fd-blue);
  font-size: 1.4rem;
}

.folder-stack strong,
.folder-stack small,
.disk-target span {
  display: block;
}

.folder-stack small,
.disk-target span {
  color: var(--fd-muted);
}

.desktop-shell .progress-track {
  margin: 22px 0 0;
}

.progress-track {
  background: #e8eef6;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.progress-fill {
  background: var(--fd-green);
  border-radius: inherit;
  height: 100%;
  width: 72%;
}

.pricing-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
}

.pricing-grid--two {
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card h3 {
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.pricing-card h3 span {
  color: var(--fd-muted);
  font-size: 1rem;
  font-weight: 700;
  margin-left: 4px;
}

.plan-label {
  color: var(--fd-blue) !important;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.plan-badge {
  align-self: flex-start;
  background: var(--fd-navy);
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
  padding: 6px 10px;
  text-transform: uppercase;
}

.pro-card {
  border-color: rgba(35, 132, 255, 0.4);
  box-shadow: 0 18px 46px rgba(7, 26, 47, 0.09);
}

.yearly-card {
  border-color: rgba(32, 180, 134, 0.5);
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.pricing-card li {
  align-items: flex-start;
  color: var(--fd-ink);
  display: flex;
  gap: 10px;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card .button.is-light {
  background: #e5edf7;
  border-color: #ccd9e8;
}

.pricing-card .button.is-light:hover,
.pricing-card .button.is-light:focus {
  background: #d7e3f1;
  border-color: #c1d1e4;
}

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

.final-cta {
  background: var(--fd-navy);
  color: #ffffff;
  text-align: center;
}

.final-cta .title {
  color: #ffffff;
}

.final-cta .eyebrow::before,
.final-cta .eyebrow::after {
  display: none;
}

.final-cta p:not(.eyebrow) {
  color: #dce8f6;
  margin: 0 auto 26px;
  max-width: 650px;
}

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

.card.pro {
  --bulma-card-background-color: #ffffff;
  --bulma-text-strong: #333333;
}

@media (max-width: 1100px) {
  .hero-section {
    min-height: auto;
  }

  .desktop-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .navbar {
    padding: 14px 18px;
  }

  .landing-nav {
    padding: 14px 18px;
  }

  .signup-panel {
    grid-template-columns: 1fr;
  }

  .signup-page {
    min-height: auto;
    padding: 26px 18px 48px;
  }

  .account-page {
    min-height: auto;
    padding: 26px 18px 48px;
  }

  .account-heading {
    text-align: left;
  }

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

  .account-actions .button,
  .account-danger-zone .button {
    width: 100%;
  }

  .account-danger-zone {
    align-items: stretch;
    flex-direction: column;
  }

  .landing-nav,
  .landing-nav .navbar-end,
  .landing-nav-links {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }

  .landing-nav-links {
    gap: 10px;
    width: 100%;
  }

  .navbar .navbar-end,
  .account-nav-links {
    width: 100%;
  }

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

  .account-nav-links .button {
    width: 100%;
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-circuit-bg {
    opacity: 0.48;
  }

  .hero-copy .title {
    font-size: clamp(2.3rem, 13vw, 4rem);
  }

  .hero-actions .button,
  .desktop-actions .button {
    width: 100%;
  }

  .value-grid,
  .workflow-steps,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    text-align: left;
  }

  .problem-section,
  .workflow-section,
  .pricing-section,
  .faq-section,
  .desktop-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }
}
