:root {
  color-scheme: light;
  --background: #f7f5fb;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #211f2b;
  --text-soft: #686374;
  --primary: #6957c7;
  --primary-dark: #5140ad;
  --primary-soft: #eeeafd;
  --border: rgba(79, 69, 112, 0.14);
  --shadow: 0 24px 70px rgba(46, 37, 84, 0.12);
  --radius-large: 28px;
  --radius-medium: 18px;
  --page-width: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(73, 232, 150, 0.16), transparent 34%),
    radial-gradient(circle at 90% 5%, rgba(255, 181, 104, 0.18), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(105, 87, 199, 0.15), transparent 42%),
    var(--background);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

a {
  color: var(--primary-dark);
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(105, 87, 199, 0.35);
  outline-offset: 3px;
}

.site-shell {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  padding: 22px 0;
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(45, 37, 77, 0.16);
}

.navigation-link {
  font-weight: 700;
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: 72px 0 54px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(105, 87, 199, 0.18);
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-logo-card {
  display: grid;
  width: min(100%, 300px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(246, 242, 255, 0.74));
  box-shadow: var(--shadow);
}

.hero-logo-card img {
  width: 68%;
  height: 68%;
  border-radius: 28%;
  object-fit: cover;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.button-primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(105, 87, 199, 0.24);
}

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

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

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

.card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-medium);
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(45, 37, 77, 0.07);
  backdrop-filter: blur(12px);
}

.card h2 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

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

.policy-layout {
  padding: 42px 0 72px;
}

.policy-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-large);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.policy-header {
  padding: 38px clamp(22px, 5vw, 58px);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(
      135deg,
      rgba(73, 232, 150, 0.12),
      rgba(105, 87, 199, 0.1),
      rgba(255, 181, 104, 0.13)
    );
}

.policy-header h1 {
  margin: 14px 0 12px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
}

.policy-meta {
  margin: 0;
  color: var(--text-soft);
}

.policy-content {
  padding: 38px clamp(22px, 5vw, 58px) 54px;
}

.policy-content section {
  scroll-margin-top: 20px;
}

.policy-content h2 {
  margin-top: 42px;
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: #494554;
}

.policy-content ul {
  padding-left: 22px;
}

.contact-box {
  padding: 20px;
  border: 1px solid rgba(105, 87, 199, 0.2);
  border-radius: 16px;
  background: var(--primary-soft);
}

.site-footer {
  padding: 26px 0 38px;
  color: var(--text-soft);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-card {
    width: 190px;
    border-radius: 28px;
  }

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

  .navigation {
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .site-shell {
    width: min(calc(100% - 22px), var(--page-width));
  }

  .navigation-link {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .policy-layout {
    padding-top: 22px;
  }
}