:root {
  --ink: #1c1917;
  --muted: #57534e;
  --line: #d8e3e1;

  --paper: #fafdfb;
  --soft: #ecfdf5;

  --brand: #0d9488;
  --brand-dark: #0f766e;
  --brand-soft: rgba(13, 148, 136, 0.14);
  --brand-border: rgba(13, 148, 136, 0.3);
  --brand-shadow: rgba(13, 148, 136, 0.28);

  --surface-dark: #115e59;
  --surface-footer: #0c2725;

  --accent: #78716c;
  --danger: #ff3b30;

  --shadow: 0 4px 22px rgba(17, 94, 89, 0.07);
  --shadow-strong: 0 14px 40px rgba(17, 94, 89, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

main a:not(.btn):not(.brand),
.policy a:not(.btn) {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

main a:not(.btn):not(.brand):hover,
.policy a:not(.btn):hover {
  color: var(--brand-dark);
}

.topbar {
  background: var(--brand-dark);
  color: #ffffff;
  font-size: 14px;
}

.topbar a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.topbar a:hover {
  color: #ccfbf1;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 9px 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2dd4bf 0%, var(--brand) 42%, var(--brand-dark) 100%);
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  animation: markPulse 4s ease-in-out infinite;
}

.brand-name {
  display: block;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid var(--brand);
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  box-shadow: 0 10px 28px var(--brand-shadow);
  transform: translateY(-2px);
}

.hero {
  background:
    radial-gradient(circle at 88% 12%, var(--brand-soft), transparent 36%),
    radial-gradient(circle at 8% 78%, rgba(217, 119, 6, 0.1), transparent 40%),
    radial-gradient(circle at 92% 90%, rgba(13, 148, 136, 0.12), transparent 32%),
    linear-gradient(135deg, #fffbf5 0%, #ffffff 38%, #ecfdf5 100%);
  border-bottom: 1px solid var(--line);
  background-size: 120% 120%, 120% 120%, 120% 120%, auto;
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  min-height: 520px;
  padding: 56px 0 48px;
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.lead {
  font-size: 18px;
  max-width: 680px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.verification-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floatPanel 6s ease-in-out infinite;
}

.panel-head {
  background: linear-gradient(135deg, #042f2e 0%, var(--surface-dark) 55%, #0f766e 100%);
  color: #ffffff;
  padding: 18px 20px;
}

.panel-head p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 14px;
}

.panel-head h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.detail-list {
  margin: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
}

.detail-row dt {
  color: var(--muted);
  font-weight: 700;
}

.detail-row dd {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.section {
  padding: 66px 0;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.lift:hover,
.mini-card:hover,
.process-step:hover,
.faq-item:hover {
  border-color: var(--brand-border);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.card.tint {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fbbf24;
}

.check-list {
  padding-left: 20px;
  margin: 0;
}

.check-list li {
  margin: 8px 0;
}

.page-hero {
  background: linear-gradient(180deg, var(--soft) 0%, #fafdfb 100%);
  border-bottom: 1px solid var(--line);
  padding: 58px 0;
}

.content {
  max-width: 850px;
}

.stats-strip {
  background: linear-gradient(90deg, #042f2e 0%, var(--brand-dark) 45%, #115e59 100%);
  color: #ffffff;
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 18px;
}

.stat strong {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: #ffffff;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-top: 8px;
  font-size: 14px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.mini-card,
.process-step,
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-icon {
  align-items: center;
  background: var(--brand-soft);
  border-radius: 8px;
  color: var(--brand-dark);
  display: inline-flex;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  margin-bottom: 16px;
  width: 42px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
}

.process-step span {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: #ffffff;
  display: inline-flex;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  margin-bottom: 16px;
  width: 36px;
}

.band {
  background: linear-gradient(135deg, #f0fdfa 0%, #fafaf9 45%, #fffbeb 100%);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.document-list {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.document-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px 18px;
}

.document-list div + div {
  border-top: 1px solid var(--line);
}

.document-list strong {
  color: var(--muted);
}

.document-list span {
  font-weight: 700;
  color: var(--ink);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.cta-section {
  background: linear-gradient(135deg, #042f2e 0%, var(--surface-dark) 50%, #134e4a 100%);
  color: #ffffff;
  padding: 54px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  color: #ffffff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 680px;
}

.cta-inner .btn {
  flex-shrink: 0;
}

.reveal {
  animation: revealUp 720ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

.verification-panel.reveal {
  animation: revealUp 720ms ease both, floatPanel 6s ease-in-out 900ms infinite;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroDrift {
  from {
    background-position: 0% 0%, 100% 100%, 92% 8%, center;
  }

  to {
    background-position: 6% 4%, 92% 90%, 78% 22%, center;
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--brand-shadow);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(13, 148, 136, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.policy h2 {
  margin-top: 32px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.notice {
  border-left: 4px solid var(--brand-dark);
  background: #ccfbf1;
  padding: 16px 18px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--paper);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--brand-soft);
  border-color: var(--brand);
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  background: var(--surface-footer);
  color: #dce5ef;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 15px;
}

.site-footer p {
  color: #c5d0dc;
  font-size: 14px;
}

.site-footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.site-footer a:hover {
  color: #5eead4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #94a3b8;
  margin-top: 28px;
  padding-top: 18px;
  font-size: 14px;
}

button {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font: inherit;
  transition: background 180ms ease;
}

button:hover {
  background: var(--brand-dark);
}

@media (max-width: 850px) {
  .topbar-inner,
  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-grid,
  .split,
  .contact-box,
  .footer-grid,
  .stats-grid,
  .compliance-grid,
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-grid {
    min-height: auto;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .document-list div {
    grid-template-columns: 1fr;
  }
}