:root {
  --primary: #6c5ce7;
  --primary-dark: #4b3fd0;
  --secondary: #a29bfe;
  --accent: #00d2d3;
  --text: #2d3436;
  --muted: #657174;
  --bg: #fafbfc;
  --surface: #ffffff;
  --surface-soft: #f2f4fb;
  --ink: #12141d;
  --border: rgba(45, 52, 54, 0.11);
  --shadow: 0 24px 70px rgba(53, 47, 122, 0.14);
  --shadow-soft: 0 16px 40px rgba(53, 47, 122, 0.1);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(162, 155, 254, 0.28), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  content: "";
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.page-header {
  position: relative;
  padding: 150px 0 72px;
  overflow: hidden;
}

.page-header::after {
  position: absolute;
  inset: 26% -10% auto auto;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(0, 210, 211, 0.18), transparent 64%);
  content: "";
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header .lead {
  max-width: 680px;
  margin-top: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(250, 251, 252, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent),
    linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 14px 30px rgba(108, 92, 231, 0.28);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(108, 92, 231, 0.09);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--ink);
  background: #ffffff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(45, 52, 54, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(53, 47, 122, 0.16);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), #7d6df2 52%, var(--accent));
}

.btn-ghost {
  color: var(--primary-dark);
  background: rgba(108, 92, 231, 0.09);
  box-shadow: none;
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  padding: 88px 0 70px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 10% auto auto -18%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.2), transparent 62%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 54px;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy .lead {
  max-width: 650px;
  margin-top: 24px;
}

.signup-form {
  display: flex;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: min(100%, 580px);
  margin-top: 34px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-soft);
}

.signup-form:has(.form-note:not(:empty)) {
  margin-bottom: 34px;
}

.signup-form input {
  flex: 1 1 220px;
  width: auto;
  min-height: 44px;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  color: var(--text);
  background: transparent;
}

.signup-form input::placeholder {
  color: #8b9699;
}

.signup-form .btn {
  min-height: 44px;
  white-space: nowrap;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trust-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.image-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16));
  box-shadow: var(--shadow);
}

.image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.image-shell:hover img {
  transform: scale(1.035);
}

.hero-media .image-shell {
  aspect-ratio: 1.05 / 1;
}

.floating-card {
  position: absolute;
  right: -16px;
  bottom: 28px;
  display: grid;
  gap: 6px;
  width: 220px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  animation: floaty 6s ease-in-out infinite;
}

.floating-card strong {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.product-shot {
  text-align: center;
}

.product-shot .image-shell {
  margin-top: 34px;
  aspect-ratio: 16 / 9;
}

.caption {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.home-about {
  position: relative;
}

.home-about-card {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 42px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 12%, rgba(162, 155, 254, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.home-about-media .image-shell {
  aspect-ratio: 16 / 11;
}

.home-about-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.about-pills span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(108, 92, 231, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--primary-dark);
  background: rgba(108, 92, 231, 0.08);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 560px;
}

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

.feature-card,
.value-card,
.testimonial-card,
.team-card,
.blog-card,
.pricing-card,
.contact-panel,
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.feature-card,
.value-card,
.testimonial-card,
.team-card {
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.value-card:hover,
.testimonial-card:hover,
.team-card:hover,
.blog-card:hover,
.pricing-card:hover {
  border-color: rgba(108, 92, 231, 0.24);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.icon-box {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 34px rgba(108, 92, 231, 0.2);
}

.icon-box svg {
  width: 25px;
  height: 25px;
}

.feature-card p,
.value-card p,
.team-card p,
.testimonial-card p {
  margin-top: 12px;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #f5f6ff);
  box-shadow: var(--shadow-soft);
}

.step-card::before {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  counter-increment: steps;
  content: counter(steps);
}

.logo-bar {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.placeholder-logo {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  color: #8d9699;
  background: rgba(255, 255, 255, 0.68);
  filter: grayscale(1);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 210, 211, 0.2), transparent 30%),
    linear-gradient(135deg, var(--ink), #24213f 54%, #191b22);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.metric {
  padding: 42px;
  text-align: center;
}

.metric + .metric {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metric strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

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

.avatar {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 900;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-photo {
  background: #eef0f7;
  box-shadow: 0 8px 20px rgba(45, 52, 54, 0.12);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 22px;
  background: var(--surface-soft);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.testimonial-author,
.team-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-author strong,
.team-top strong {
  display: block;
}

.testimonial-author span,
.team-top span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 58px;
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 210, 211, 0.25), transparent 32%),
    linear-gradient(135deg, #241f51, var(--primary-dark));
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: #ffffff;
  max-width: 780px;
}

.cta-band p {
  margin-top: 16px;
}

.cta-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .signup-form {
  margin-top: 28px;
}

.signup-form .form-note {
  position: absolute;
  top: calc(100% + 8px);
  left: 18px;
  display: none;
  width: calc(100% - 36px);
  padding-left: 0;
}

.signup-form .form-note:not(:empty) {
  display: block;
}

.feature-row {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 52px;
  padding: 54px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.feature-row:nth-child(even) .feature-visual {
  order: 2;
}

.feature-row .image-shell {
  aspect-ratio: 4 / 3;
}

.feature-copy p {
  margin-top: 18px;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.72rem;
  content: "✓";
}

.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.pricing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
}

.pricing-toggle button.active {
  color: #ffffff;
  background: var(--ink);
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card.popular {
  border-color: rgba(108, 92, 231, 0.42);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--primary), var(--accent)) border-box;
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 7px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.pricing-card .check-list {
  margin-bottom: 30px;
}

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

.comparison {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  border-collapse: separate;
  border-spacing: 0;
}

.comparison th,
.comparison td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.comparison th:first-child,
.comparison td:first-child {
  text-align: left;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.comparison th {
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
}

.yes {
  color: var(--primary);
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: transparent;
  font-weight: 900;
  text-align: left;
}

.faq-question span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(108, 92, 231, 0.1);
  transition: transform 180ms ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.about-hero .image-shell {
  aspect-ratio: 21 / 8;
}

.people-spotlight {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.people-spotlight .image-shell {
  aspect-ratio: 16 / 10;
}

.people-spotlight p {
  margin-top: 16px;
  color: var(--muted);
}

.mission {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 48px;
}

.mission-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.team-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

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

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

.blog-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-content {
  padding: 26px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.blog-content p {
  margin-top: 12px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary-dark);
  font-weight: 900;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 30px;
}

.contact-panel {
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.signup-form:focus-within {
  border-color: rgba(108, 92, 231, 0.5);
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12);
}

.form-note {
  color: var(--primary-dark);
  font-weight: 800;
}

.contact-aside {
  display: grid;
  gap: 18px;
}

.support-card {
  padding: 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 210, 211, 0.13));
}

.support-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 18px;
}

.support-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-card p {
  margin-top: 12px;
  color: var(--muted);
}

.site-footer {
  margin-top: 60px;
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 210, 211, 0.22), transparent 28rem),
    linear-gradient(135deg, #11131c, #221d49 62%, #12141d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 0.8fr));
  gap: 34px;
}

.site-footer .logo {
  color: #ffffff;
}

.footer-brand p {
  max-width: 300px;
  margin-top: 18px;
}

.footer-col h4 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 900;
}

.socials a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 78px 18px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-grid,
  .home-about-card,
  .feature-row,
  .mission,
  .people-spotlight,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-media .image-shell {
    aspect-ratio: 16 / 11;
  }

  .feature-row:nth-child(even) .feature-visual {
    order: 0;
  }

  .card-grid,
  .steps,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .page-header {
    padding-top: 120px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 16px;
  }

  .signup-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .signup-form input {
    min-height: 48px;
  }

  .signup-form .btn {
    width: 100%;
  }

  .hero-ctas {
    align-items: stretch;
  }

  .floating-card {
    right: 14px;
    bottom: 14px;
    width: 185px;
  }

  .card-grid,
  .steps,
  .testimonial-grid,
  .pricing-grid,
  .team-grid,
  .values-grid,
  .blog-grid,
  .footer-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .feature-row,
  .cta-band {
    padding: 28px;
  }

  .metric + .metric {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

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