:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #52607a;
  --primary: #0b6a7f;
  --primary-dark: #084f5f;
  --accent: #ec7a2f;
  --line: #d8e0ef;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 520px at 6% -10%, #daf4ff 0%, transparent 62%),
    radial-gradient(920px 520px at 94% 0%, #ffe3d3 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 99;
  background: #fff;
  color: var(--text);
  padding: 0.65rem 0.95rem;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1080px, calc(100% - 2.8rem));
  margin: 0 auto;
}

.section {
  padding: 5.2rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(216, 224, 239, 0.72);
  border-bottom: 1px solid rgba(216, 224, 239, 0.72);
}

.bg-shape {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  opacity: 0.28;
  filter: blur(50px);
  pointer-events: none;
}

.bg-shape-1 {
  width: 290px;
  height: 290px;
  background: #85d3ff;
  top: 10%;
  left: -100px;
}

.bg-shape-2 {
  width: 320px;
  height: 320px;
  background: #ffc99c;
  bottom: 10%;
  right: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(245, 249, 255, 0.88);
  border-bottom: 1px solid rgba(216, 224, 239, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 210px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 7px auto;
  background: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-weight: 600;
}

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

.badge,
.eyebrow {
  margin-bottom: 0.7rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.hero-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.3vw, 3.25rem);
  max-width: 16ch;
}

.lead {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 60ch;
}

.hero-card {
  padding: 1.7rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.7rem;
}

.hero-card ul {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 0.58rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 0.8rem 1.35rem;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  background: #edf5ff;
}

.btn-small {
  padding: 0.55rem 1.02rem;
}

.section-head {
  margin-bottom: 1.8rem;
  max-width: 760px;
}

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

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

.info-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  background: var(--surface);
}

.compliance-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.15rem;
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
}

.plain-list li {
  color: var(--muted);
}

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

.product-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-type {
  margin: 0 0 0.35rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.product-layout {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.product-logo {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #fff;
  padding: 5px;
}

.product-content h3 {
  margin: 0 0 0.45rem;
}

.product-summary {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.info-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.notice {
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  border-left: 4px solid var(--accent);
  background: #fff7f2;
  border-radius: 10px;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.checklist li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  background: #fff;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
}

.legal-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.legal-url {
  margin-top: 0.75rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  color: var(--primary);
}

.contact {
  padding-top: 1rem;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(130deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: var(--shadow);
}

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

.contact-grid h3 {
  margin-bottom: 0.3rem;
}

.contact-grid p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0 2.4rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 160px;
  height: auto;
  display: block;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

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

.policy-main {
  padding: 4rem 0 5rem;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(1.8rem, 3.7vw, 2.6rem);
}

.policy-meta {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.policy-card h2 {
  margin-top: 1.4rem;
  font-size: 1.2rem;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  margin: 0.4rem 0 0.5rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .profile-grid,
  .product-grid,
  .compliance-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1080px, calc(100% - 1.3rem));
  }

  .section {
    padding: 4rem 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.25rem 1.2rem;
    background: #f8fbff;
    border-bottom: 1px solid var(--line);
  }

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

  .profile-grid,
  .product-grid,
  .compliance-grid,
  .legal-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-layout {
    grid-template-columns: 62px 1fr;
    gap: 0.75rem;
  }

  .product-logo {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    padding: 4px;
  }

  .policy-card {
    padding: 1.2rem;
  }

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

  .brand-logo {
    width: 170px;
  }
}
