:root {
  --brand: #ff6b35;
  --brand-dark: #c94b1c;
  --ink: #17212b;
  --muted: #596674;
  --line: #e8edf2;
  --surface: #ffffff;
  --soft: #fff6f1;
  --soft-2: #eef8f6;
  --accent: #0f766e;
  --shadow: 0 16px 48px rgba(23, 33, 43, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.26);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--brand-dark);
}

.hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 78% 24%, rgba(15, 118, 110, 0.12), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, var(--soft) 58%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.26);
}

.button-primary:hover {
  color: #ffffff;
  background: var(--brand-dark);
}

.button-secondary {
  color: var(--ink);
  background: #ffffff;
  border-color: var(--line);
}

.hero-panel {
  display: grid;
  gap: 22px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin-bottom: 6px;
}

.hero-panel p {
  margin: 0;
  color: var(--muted);
}

.logo-placeholder {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #f59e0b);
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(255, 107, 53, 0.24);
}

.section {
  padding: 68px 0;
}

.section-muted {
  background: var(--soft-2);
  border-block: 1px solid #d8eeea;
}

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

.feature {
  min-height: 190px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature h2 {
  font-size: 1.22rem;
}

.feature p,
.contact-section p,
.split p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-list a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d8eeea;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.link-list a:hover {
  color: var(--brand-dark);
  border-color: rgba(255, 107, 53, 0.42);
}

.contact-section {
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  color: #d7dee8;
  background: var(--ink);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
}

.footer-content a {
  color: #ffffff;
}

.legal-page {
  padding: 58px 0 72px;
  background: linear-gradient(180deg, var(--soft), #ffffff 300px);
}

.legal-content {
  max-width: 860px;
  padding: 42px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(23, 33, 43, 0.08);
}

.legal-content h1 {
  font-size: clamp(2.15rem, 6vw, 3.8rem);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 1.42rem;
}

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

.legal-content strong {
  color: var(--ink);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.2rem;
}

.legal-content li + li {
  margin-top: 8px;
}

.updated {
  margin: 12px 0 26px;
  color: var(--muted);
  font-weight: 700;
}

.notice {
  margin: 28px 0 8px;
  padding: 22px;
  background: var(--soft);
  border: 1px solid rgba(255, 107, 53, 0.28);
  border-radius: 8px;
}

.notice h2 {
  margin-top: 0;
}

.notice p {
  margin: 8px 0 0;
}

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

  .nav {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .hero {
    padding: 56px 0 48px;
  }

  .hero-grid,
  .split,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 24px;
  }

  .section {
    padding: 48px 0;
  }

  .legal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .feature {
    min-height: auto;
  }
}
