:root {
  --bg: #050a16;
  --bg-soft: rgba(9, 14, 26, 0.92);
  --surface: rgba(18, 24, 40, 0.68);
  --surface-strong: rgba(18, 24, 40, 0.82);
  --surface-alt: rgba(12, 18, 32, 0.68);
  --surface-gradient: linear-gradient(135deg, rgba(76, 122, 255, 0.24), rgba(12, 18, 30, 0.8));
  --accent: #4c7aff;
  --accent-strong: #3461ff;
  --accent-soft: rgba(76, 122, 255, 0.18);
  --white: #f7f9ff;
  --text-primary: var(--white);
  --text-secondary: rgba(247, 249, 255, 0.78);
  --text-muted: rgba(247, 249, 255, 0.56);
  --border: rgba(76, 122, 255, 0.28);
  --shadow: 0 32px 60px rgba(7, 10, 22, 0.45);
  --shadow-soft: 0 20px 40px rgba(7, 10, 22, 0.28);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(76, 122, 255, 0.2), transparent 45%),
    radial-gradient(circle at 85% 5%, rgba(108, 213, 255, 0.14), transparent 52%),
    linear-gradient(180deg, #040814 0%, #030510 40%, #060b18 100%);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover,
a:focus {
  color: var(--accent);
}

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  padding: 2.6rem 1.5rem 5.2rem;
  position: relative;
  overflow: hidden;
}

.hero::after,
.hero::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.75;
  pointer-events: none;
}

.hero::after {
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(100, 148, 255, 0.32), transparent 68%);
  top: -210px;
  right: -200px;
  z-index: -1;
}

.hero::before {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(108, 213, 255, 0.24), transparent 68%);
  bottom: -240px;
  left: -140px;
  z-index: -1;
}

.hero::after {
  animation: pulse 16s ease-in-out infinite alternate;
}

.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 3.6rem;
  backdrop-filter: blur(18px);
  background: rgba(12, 18, 32, 0.58);
  border: 1px solid rgba(76, 122, 255, 0.26);
  padding: 0.9rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 34px rgba(7, 10, 22, 0.32);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.brand__logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(8, 12, 26, 0.2);
  padding: 4px;
  object-fit: contain;
  box-shadow: inset 0 0 0 1px rgba(247, 249, 255, 0.08);
}

.hero__links {
  display: flex;
  gap: 1.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

.hero__links a {
  position: relative;
  padding-bottom: 0.3rem;
  transition: color 0.2s ease;
}

.hero__links a[data-active="true"] {
  color: var(--accent);
}

.hero__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__links a:hover::after,
.hero__links a:focus::after,
.hero__links a[data-active="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.6rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--text-muted);
}

h1 {
  font-size: clamp(2.6rem, 6vw, 3.5rem);
  line-height: 1.12;
  margin: 0;
}

.hero__lead {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.pill {
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  background: rgba(76, 122, 255, 0.12);
  border: 1px solid rgba(76, 122, 255, 0.3);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cta--single {
  width: max-content;
}

.hero__content .cta--single {
  justify-self: flex-start;
  margin-top: 0.35rem;
}

.section--cta .cta--single {
  margin: 1.4rem auto 0;
  justify-content: center;
}

@media (max-width: 640px) {
  .cta--single {
    width: 100%;
    justify-content: center;
  }

  .hero__content .cta--single {
    margin-top: 0.75rem;
  }
}

.btn {
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.btn__icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

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

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #0a1024;
  box-shadow: 0 24px 40px rgba(76, 122, 255, 0.32);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 48px rgba(76, 122, 255, 0.38);
}

.btn.secondary {
  background: rgba(12, 18, 32, 0.78);
  border: 1px solid rgba(76, 122, 255, 0.32);
  color: var(--text-primary);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  background: rgba(12, 18, 32, 0.88);
}

.cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 460px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__frame {
  background: rgba(12, 18, 32, 0.6);
  border-radius: 26px;
  padding: 1rem;
  border: 1px solid rgba(76, 122, 255, 0.26);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__frame::before {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 20px;
  border: 1px solid rgba(76, 122, 255, 0.16);
  pointer-events: none;
}

.hero__frame::after {
  content: '';
  position: absolute;
  top: -35%;
  right: -10%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(76, 122, 255, 0.2), transparent 70%);
  pointer-events: none;
}

.hero__frame img {
  border-radius: 18px;
  filter: drop-shadow(0 18px 32px rgba(7, 10, 22, 0.45));
}

.hero--about {
  padding-bottom: 4.6rem;
}

.hero--about .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.hero__inner--stack .hero__content {
  max-width: 720px;
  margin: 0 auto;
}

.hero--about .cta {
  justify-content: center;
}

.hero--subpage {
  padding-bottom: 3.6rem;
}

.hero--subpage .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  text-align: center;
}

.section {
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 40, 0.55), rgba(15, 22, 40, 0.15));
  z-index: -1;
}

.section__intro {
  max-width: var(--max-width);
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
  position: relative;
  padding-top: 0.5rem;
}

.section__intro::before {
  content: '';
  width: 56px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
  position: absolute;
  top: 0;
  left: 0;
}

.section__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.7rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--text-muted);
}

.section--feature-grid {
  background: transparent;
}

.feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(76, 122, 255, 0.26);
  border-radius: 22px;
  padding: 1.9rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  display: grid;
  gap: 0.85rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 20px;
  border: 1px solid rgba(247, 249, 255, 0.04);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(76, 122, 255, 0.42);
  box-shadow: 0 30px 50px rgba(7, 10, 22, 0.4);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(76, 122, 255, 0.34), rgba(76, 122, 255, 0.12));
  border: 1px solid rgba(76, 122, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(247, 249, 255, 0.06);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: 11px;
  background: var(--white);
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  opacity: 0.9;
}

.feature-icon--shield::after {
  mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 3l7 3v5c0 4.7-3 8.9-7 10-4-1.1-7-5.3-7-10V6l7-3z" fill="%23ffffff"/%3E%3C/svg%3E');
}

.feature-icon--org::after {
  mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4 19h4v-6H4v6zm6 0h4V5h-4v14zm6 0h4v-9h-4v9z" fill="%23ffffff"/%3E%3C/svg%3E');
}

.feature-icon--broom::after {
  mask-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M16 11l3 3-4 7-3-3-4 4-1-6 6-1-3-3 6-6 4 4-4 1z" fill="%23ffffff"/%3E%3C/svg%3E');
}

.feature-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-secondary);
}

.section--workflow {
  background: radial-gradient(circle at 8% 16%, rgba(76, 122, 255, 0.16), transparent 55%);
}

.section--story {
  background: radial-gradient(circle at 12% 18%, rgba(76, 122, 255, 0.12), transparent 50%);
}

.workflow__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 2.4rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.workflow__copy {
  display: grid;
  gap: 1.25rem;
}

.workflow__copy h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 2.8rem);
}

.workflow__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
  color: var(--text-secondary);
}

.workflow__list li {
  position: relative;
  background: var(--surface-alt);
  border-radius: 16px;
  border: 1px solid rgba(76, 122, 255, 0.22);
  padding: 0.85rem 1.25rem 0.85rem 1.9rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.workflow__list li::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.workflow__list li:hover {
  transform: translateX(4px);
  border-color: rgba(76, 122, 255, 0.36);
}

.workflow__visual {
  position: relative;
}

.workflow__visual::after {
  content: '';
  position: absolute;
  inset: 8% 6% 4%;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(76, 122, 255, 0.14), transparent);
  filter: blur(12px);
  z-index: -1;
}

.workflow__visual img {
  border-radius: 24px;
  border: 1px solid rgba(76, 122, 255, 0.24);
  box-shadow: var(--shadow);
}

.section--highlight {
  background: radial-gradient(circle at center, rgba(76, 122, 255, 0.12), rgba(15, 22, 40, 0.94));
}

.highlight__content,
.highlight__points {
  max-width: var(--max-width);
  margin: 0 auto;
}

.highlight__content {
  text-align: center;
  margin-bottom: 3rem;
  display: grid;
  gap: 1rem;
}

.highlight__content h2 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 2.8rem);
}

.highlight__content p {
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-secondary);
}

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

.point {
  background: rgba(10, 16, 28, 0.82);
  border-radius: 20px;
  border: 1px solid rgba(76, 122, 255, 0.22);
  padding: 1.7rem;
  display: grid;
  gap: 0.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.point:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 122, 255, 0.36);
}

.point h3 {
  margin: 0;
  font-size: 1.12rem;
}

.point p {
  margin: 0;
  color: var(--text-secondary);
}

.section--faq {
  background: radial-gradient(circle at 90% 12%, rgba(76, 122, 255, 0.12), transparent 50%);
}

.faq__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}

.faq-accordion {
  display: grid;
  gap: 1rem;
}

.faq-panel {
  background: rgba(10, 16, 28, 0.85);
  border-radius: 22px;
  border: 1px solid rgba(76, 122, 255, 0.26);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-panel[open] {
  border-color: rgba(76, 122, 255, 0.4);
  transform: translateY(-2px);
}

.faq-panel summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.6rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}

.faq-panel summary::-webkit-details-marker {
  display: none;
}

.faq-title {
  font-size: 1.05rem;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(76, 122, 255, 0.18);
  border: 1px solid rgba(76, 122, 255, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  border-radius: 999px;
  transition: transform 0.2s ease;
}

.faq-icon::before {
  width: 2px;
  height: 10px;
}

.faq-icon::after {
  width: 10px;
  height: 2px;
}

.faq-panel[open] .faq-icon::before {
  transform: scaleY(0);
}

.faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(76, 122, 255, 0.16);
  margin-top: -0.4rem;
}

.faq-body p {
  margin: 0;
}

.faq-body a {
  color: var(--accent);
}

.story-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.story-card {
  background: rgba(10, 16, 28, 0.82);
  border-radius: 22px;
  border: 1px solid rgba(76, 122, 255, 0.24);
  padding: 1.9rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.75rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(76, 122, 255, 0.36);
}

.story-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.story-card p {
  margin: 0;
  color: var(--text-secondary);
}

.section--about-simple {
  background: radial-gradient(circle at 12% 18%, rgba(76, 122, 255, 0.12), transparent 50%);
}

.about-simple {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(10, 16, 28, 0.82);
  border-radius: 28px;
  border: 1px solid rgba(76, 122, 255, 0.26);
  padding: 3rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  backdrop-filter: blur(12px);
}

.about-simple__intro {
  display: grid;
  gap: 1rem;
}

.about-simple__intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.6rem);
}

.about-simple__intro p {
  margin: 0;
  color: var(--text-secondary);
}

.about-simple__body {
  display: grid;
  gap: 1.2rem;
  color: var(--text-secondary);
}

.about-simple__signature {
  margin-top: 0.5rem;
  color: var(--text-primary);
  font-weight: 600;
}

.about-simple__title {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: var(--text-muted);
}

.about-simple__company {
  display: block;
  margin-top: 0.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.about-simple__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.btn--icon {
  width: 3rem;
  height: 3rem;
  padding: 0;
  border-radius: 50%;
}

.section--legal {
  background: radial-gradient(circle at 18% 22%, rgba(76, 122, 255, 0.12), transparent 58%);
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(10, 16, 28, 0.82);
  border-radius: 28px;
  border: 1px solid rgba(76, 122, 255, 0.24);
  padding: clamp(2.4rem, 5vw, 3.2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.2rem;
  color: var(--text-secondary);
}

.legal h1,
.legal h2,
.legal h3 {
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.legal ul {
  padding-left: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.legal a {
  color: var(--accent);
}

.section--contact {
  background: radial-gradient(circle at 15% 20%, rgba(76, 122, 255, 0.16), transparent 55%);
}

.contact-card {
  max-width: var(--max-width);
  margin: 0 auto;
  background: rgba(10, 16, 28, 0.82);
  border-radius: 26px;
  border: 1px solid rgba(76, 122, 255, 0.28);
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.contact-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.6rem);
}

.contact-copy p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(76, 122, 255, 0.26);
  background: rgba(9, 14, 26, 0.6);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px rgba(247, 249, 255, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(76, 122, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(76, 122, 255, 0.35);
  outline: none;
}

.form-actions {
  margin-top: 0.5rem;
}

.form-actions .btn {
  min-width: 160px;
}

.hidden {
  display: none;
}

.section--cta {
  background: linear-gradient(135deg, rgba(76, 122, 255, 0.16), rgba(15, 22, 40, 0.92));
  padding-bottom: 5.4rem;
}

.cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(10, 16, 28, 0.88);
  border-radius: 26px;
  border: 1px solid rgba(76, 122, 255, 0.28);
  padding: 2.9rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 24px;
  border: 1px solid rgba(247, 249, 255, 0.05);
  pointer-events: none;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(76, 122, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.6rem);
}

.cta-card p {
  margin: 0;
  color: var(--text-secondary);
}

.footer {
  padding: 2.6rem 1.5rem;
  background: rgba(6, 9, 18, 0.92);
  border-top: 1px solid rgba(76, 122, 255, 0.18);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--text-primary);
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.back-to-top::after {
  content: '↑';
  font-size: 0.75rem;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .hero__nav {
    flex-direction: column;
    gap: 1.4rem;
  }

  .hero__links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero__inner,
  .workflow__inner {
    text-align: center;
  }

  .hero__lead,
  .cta-note,
  .workflow__copy p,
  .contact-copy p {
    margin: 0 auto;
  }

  .hero__pills,
  .cta,
  .workflow__list,
  .contact-form {
    justify-content: center;
  }

  .workflow__list li {
    text-align: left;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 2.6rem;
    gap: 2rem;
    text-align: center;
  }

  .contact-form {
    justify-content: stretch;
  }

  .form-actions {
    display: flex;
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-copy,
  .values-list {
    justify-items: center;
  }

  .values-list li {
    text-align: left;
  }

  .value-card {
    max-width: 260px;
    margin: 0 auto;
  }

  .team-card {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 2.1rem 1rem 4.4rem;
  }

  .section {
    padding: 4.4rem 1rem;
  }

  .cta-card {
    padding: 2.3rem 1.6rem;
  }

  .contact-card {
    padding: 2.2rem 1.5rem;
  }

  .values-list li {
    text-align: left;
  }
}
