:root {
  --bg: #0a1314;
  --band: #0c1a1b;
  --accent: #6fb7c2;
  --accent-soft: rgba(111, 183, 194, 0.16);
  --accent-sage: #84c3aa;
  --on-accent: #06110f;
  --text: #f4f8f6;
  --text-strong: #edf3f1;
  --muted: #a4b6b2;
  --quiet: #82948f;
  --faint: #5f716e;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.06);
  --card: rgba(255, 255, 255, 0.022);
  --shadow: 0 44px 90px -24px rgba(0, 0, 0, 0.65);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: rgba(111, 183, 194, 0.3);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Spectral", Georgia, serif;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 1.02;
}

h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 46px);
  line-height: 1.1;
}

h3 {
  margin-bottom: 12px;
  color: var(--text-strong);
  font-size: 25px;
  line-height: 1.18;
}

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

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 19, 20, 0.76);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1180px, 100%);
  min-height: 72px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.nav-links,
.hero-actions,
.quiet-points,
.contact-lines,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text span:first-child {
  color: var(--text-strong);
  font-family: "Spectral", Georgia, serif;
  font-size: 20px;
}

.brand-text span:last-child {
  margin-top: 3px;
  color: #7c918d;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.nav-links {
  gap: 30px;
  color: #a9bbb7;
  font-size: 14.5px;
}

.nav-links a {
  text-decoration: none;
}

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

.nav-cta {
  min-height: 40px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  background: var(--accent);
  color: var(--on-accent) !important;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
}

.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
}

.orb-a {
  top: -14%;
  left: -8%;
  width: 660px;
  height: 660px;
  background: radial-gradient(circle, rgba(132, 195, 170, 0.28), transparent 64%);
  animation: auroraA 19s ease-in-out infinite;
}

.orb-b {
  right: -8%;
  bottom: -20%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(111, 183, 194, 0.22), transparent 66%);
  filter: blur(40px);
  animation: auroraB 24s ease-in-out infinite;
}

.orb-c {
  top: 16%;
  right: 22%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(143, 179, 218, 0.16), transparent 68%);
  animation: auroraA 30s ease-in-out infinite reverse;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 100% 66px;
  mask-image: linear-gradient(transparent, #000 28%, #000 72%, transparent);
}

.hero-inner {
  position: relative;
  width: min(1180px, 100%);
  min-height: 94vh;
  margin: 0 auto;
  padding: 70px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  animation: riseIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-pill {
  width: fit-content;
  margin-bottom: 30px;
  padding: 7px 16px 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(111, 183, 194, 0.34);
  border-radius: 999px;
  background: rgba(111, 183, 194, 0.07);
  color: #c0d6cf;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(111, 183, 194, 0.16);
}

.hero-text {
  max-width: 560px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.button {
  min-height: 52px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--accent);
  color: var(--on-accent);
  box-shadow: 0 14px 30px -8px rgba(111, 183, 194, 0.5);
}

.button.primary:hover {
  filter: brightness(1.08);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.015);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(111, 183, 194, 0.65);
  background: rgba(111, 183, 194, 0.06);
}

.quiet-points {
  flex-wrap: wrap;
  gap: 0;
  color: #90a39f;
  font-size: 13.5px;
}

.quiet-points span {
  display: inline-flex;
  align-items: center;
}

.quiet-points span + span::before {
  content: "";
  width: 1px;
  height: 13px;
  margin: 0 20px;
  background: rgba(255, 255, 255, 0.18);
}

.hero-visual {
  position: relative;
  animation: riseIn 1s 0.14s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.visual-halo {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 183, 194, 0.18), transparent 62%);
  filter: blur(26px);
  animation: haloPulse 9s ease-in-out infinite;
}

.visual-card {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 11px, rgba(255, 255, 255, 0.012) 11px 22px);
  box-shadow: var(--shadow);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.floating-card {
  position: absolute;
  padding: 14px 18px;
  display: grid;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(13, 27, 28, 0.86);
  color: var(--text);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.floating-card span {
  color: var(--quiet);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-card strong {
  font-family: "Spectral", Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.floating-application {
  left: -28px;
  bottom: 26px;
  animation: floatY 7s ease-in-out infinite;
}

.floating-call {
  top: 26px;
  right: -24px;
  background: var(--accent);
  color: var(--on-accent);
  animation: floatYb 6.2s ease-in-out infinite;
}

.floating-call span {
  color: rgba(6, 17, 15, 0.72);
}

.support-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -1px 0 var(--line-soft), 0 1px 0 var(--line-soft);
}

.support-strip div {
  min-height: 142px;
  padding: 30px 24px;
  border-right: 1px solid var(--line-soft);
}

.support-strip div:last-child {
  border-right: 0;
}

.support-strip strong,
.support-strip span {
  display: block;
}

.support-strip strong {
  margin-bottom: 8px;
  color: var(--text-strong);
}

.support-strip span {
  color: var(--quiet);
}

.section {
  padding: 104px max(28px, calc((100vw - 1180px) / 2));
}

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

.section-head {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-head h2 {
  max-width: 680px;
}

.section-head > p {
  max-width: 320px;
  margin-bottom: 0;
  color: #93a6a3;
  font-size: 15.5px;
  line-height: 1.7;
}

.eyebrow,
.card-tag {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 235px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  transition: border-color 160ms ease, background 160ms ease;
}

.service-card:hover {
  border-color: rgba(111, 183, 194, 0.42);
  background: rgba(111, 183, 194, 0.045);
}

.service-card p:last-child {
  margin-bottom: 0;
  color: #93a6a3;
  font-size: 15.5px;
  line-height: 1.7;
}

.real-life {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 64px;
}

.image-panel {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: repeating-linear-gradient(135deg, rgba(132, 195, 170, 0.06) 0 11px, rgba(255, 255, 255, 0.012) 11px 22px);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.real-life h2 {
  max-width: 660px;
  margin-bottom: 22px;
}

.real-life > div:last-child > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 34px;
  color: #9cafab;
  font-size: 17px;
  line-height: 1.7;
}

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

.perk-grid div {
  display: grid;
  gap: 5px;
  padding-left: 20px;
  border-left: 1px solid rgba(111, 183, 194, 0.45);
}

.perk-grid strong {
  color: var(--text);
}

.perk-grid span {
  color: #8fa29e;
  font-size: 14px;
  line-height: 1.6;
}

.center-head {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 0 16px;
  text-align: center;
}

.steps span {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(111, 183, 194, 0.45);
  border-radius: 50%;
  color: var(--accent);
  font-family: "Spectral", Georgia, serif;
  font-size: 20px;
}

.steps p {
  margin-bottom: 0;
  color: #93a6a3;
  font-size: 15px;
  line-height: 1.7;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
}

.faq-list details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.faq-list summary {
  min-height: 76px;
  padding: 24px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 700px;
  margin: 0;
  padding: 0 4px 28px;
  color: #93a6a3;
  font-size: 15.5px;
  line-height: 1.75;
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  align-items: center;
  gap: 64px;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 30px;
  right: 18%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 183, 194, 0.16), rgba(111, 183, 194, 0) 68%);
  filter: blur(20px);
  pointer-events: none;
}

.contact-copy,
.action-panel {
  position: relative;
}

.contact-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 32px;
  color: #9cafab;
  font-size: 17px;
  line-height: 1.7;
}

.contact-lines {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.contact-lines a {
  color: #c4d2cf;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-lines a:hover {
  color: var(--text);
}

.action-panel {
  display: grid;
  gap: 14px;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
}

.action-panel .button {
  width: 100%;
}

.action-panel p {
  margin: 4px 0 0;
  color: #93a6a3;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  padding: 60px max(28px, calc((100vw - 1180px) / 2)) 40px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {
  width: fit-content;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #a9bbb7;
  font-size: 14.5px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.legal {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--faint) !important;
  font-size: 11.5px !important;
}

@keyframes auroraA {
  0%,
  100% {
    transform: translate(-3%, 0) scale(1);
  }
  50% {
    transform: translate(7%, -6%) scale(1.15);
  }
}

@keyframes auroraB {
  0%,
  100% {
    transform: translate(0, 2%) scale(1.05);
  }
  50% {
    transform: translate(-8%, -4%) scale(0.92);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatYb {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(9px);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes haloPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.85;
  }
}

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

@media (max-width: 920px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .real-life,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 54px;
  }

  .support-strip,
  .service-grid,
  .perk-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

  .floating-application {
    left: 16px;
  }

  .floating-call {
    right: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero-inner,
  .section,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-links {
    font-size: 14px;
  }

  .nav-cta {
    min-width: max-content;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

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

  .quiet-points {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .quiet-points span + span::before {
    display: none;
  }

  .visual-card {
    aspect-ratio: 1;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .action-panel {
    padding: 24px;
  }
}
