:root {
  --peach: #ff768b;
  --purple: #a95ff4;
  --sky: #2ea8ff;
  --warm-white: #fffcfa;
  --night: #211f38;
  --muted: #747087;
  --line: rgba(33, 31, 56, 0.1);
  --shell: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--night);
  background: var(--warm-white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--night);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(33, 31, 56, 0.08);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 720;
  letter-spacing: 0.08em;
}

.brand img {
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #5c586d;
  font-size: 14px;
}

nav a {
  position: relative;
  padding-block: 8px;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--peach), var(--purple));
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 40%, rgba(255, 255, 255, 0.95), transparent 28%),
    linear-gradient(120deg, #fffafa 0%, #fff4f7 46%, #f5eeff 73%, #eef8ff 100%);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(169, 95, 244, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  padding-top: 112px;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  color: #8a8499;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #615b72;
  letter-spacing: 0.12em;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--peach), var(--purple));
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(58px, 6.4vw, 92px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: #625e71;
  font-size: 17px;
  line-height: 1.95;
}

.primary-link {
  display: inline-flex;
  height: 52px;
  align-items: center;
  gap: 30px;
  padding: 0 22px;
  border: 1px solid rgba(33, 31, 56, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 650;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: #fff;
  box-shadow: 0 18px 42px rgba(63, 43, 91, 0.12);
  transform: translateY(-2px);
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.brand-card {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(410px, 100%);
  aspect-ratio: 0.84;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 44% 56% 47% 53% / 53% 40% 60% 47%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 44px 100px rgba(98, 65, 137, 0.18);
  backdrop-filter: blur(18px);
}

.brand-card::before {
  position: absolute;
  z-index: -1;
  inset: 14px;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 118, 139, 0.09), rgba(46, 168, 255, 0.11));
  content: "";
}

.brand-card img {
  width: 54%;
  height: auto;
}

.brand-card-label {
  position: absolute;
  top: 44px;
  color: #8d879b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand-card p {
  position: absolute;
  bottom: 40px;
  margin: 0;
  color: #5f5a70;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(169, 95, 244, 0.18);
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 620px;
  height: 340px;
  border-color: rgba(255, 118, 139, 0.2);
  transform: rotate(-21deg);
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #6b6679;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 36px rgba(72, 51, 98, 0.1);
  font-size: 12px;
  backdrop-filter: blur(12px);
}

.note-one {
  top: 110px;
  left: 2px;
}

.note-two {
  right: -10px;
  bottom: 100px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
}

.hero-glow-left {
  bottom: -120px;
  left: -140px;
  width: 380px;
  height: 380px;
  background: rgba(255, 118, 139, 0.1);
}

.hero-glow-right {
  top: 130px;
  right: 12%;
  width: 320px;
  height: 320px;
  background: rgba(46, 168, 255, 0.11);
}

.section {
  padding-block: 120px;
}

.intro-grid,
.company-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 720;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.intro-copy {
  padding-top: 34px;
  color: #615d70;
  font-size: 18px;
  line-height: 2;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.features {
  border-block: 1px solid var(--line);
  background: #fff;
}

.section-heading {
  display: flex;
  margin-bottom: 54px;
  align-items: end;
  justify-content: space-between;
}

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

.feature-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fffafa;
}

.feature-index {
  color: #9791a2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  position: absolute;
  right: 34px;
  bottom: 96px;
  left: 34px;
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.feature-card p {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  margin: 0;
  color: #6e6979;
  font-size: 14px;
  line-height: 1.8;
}

.feature-dot {
  position: absolute;
  top: 62px;
  right: -54px;
  width: 220px;
  height: 220px;
  border-radius: 45% 55% 64% 36% / 39% 48% 52% 61%;
  opacity: 0.76;
}

.feature-pink {
  background: linear-gradient(145deg, #fffafa, #fff2f5);
}

.feature-pink .feature-dot {
  background: radial-gradient(circle at 30% 30%, #ffd6de, var(--peach));
}

.feature-purple {
  background: linear-gradient(145deg, #fff, #f7f0ff);
}

.feature-purple .feature-dot {
  background: radial-gradient(circle at 30% 30%, #e8ceff, var(--purple));
}

.feature-blue {
  background: linear-gradient(145deg, #fff, #eff9ff);
}

.feature-blue .feature-dot {
  background: radial-gradient(circle at 30% 30%, #cdecff, var(--sky));
}

.statement {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 118, 139, 0.44), transparent 24%),
    radial-gradient(circle at 90% 90%, rgba(46, 168, 255, 0.36), transparent 24%),
    var(--night);
}

.statement-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.statement-inner img {
  margin-bottom: 36px;
}

.statement-inner p {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.statement-inner span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.company {
  background: #fffafa;
}

.company-intro {
  max-width: 460px;
  margin: 30px 0 0;
  color: #696475;
  line-height: 1.9;
}

.company-facts {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: grid;
  min-height: 92px;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 20px;
}

.company-facts dt {
  color: #8a8496;
  font-size: 13px;
}

.company-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.site-footer {
  color: #eeeaf4;
  background: #171525;
}

.footer-main {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  font-size: 19px;
}

.footer-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

.footer-legal {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

.police-record-placeholder {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 700px);
  }

  .header-inner {
    min-height: 72px;
  }

  nav {
    gap: 18px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 148px;
    padding-bottom: 84px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-art {
    min-height: 430px;
  }

  .brand-card {
    width: min(360px, 84vw);
  }

  .orbit-one {
    width: 390px;
    height: 390px;
  }

  .orbit-two {
    width: 480px;
    height: 290px;
  }

  .intro-grid,
  .company-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .intro-copy {
    padding-top: 0;
  }

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

  .feature-card {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 28px);
  }

  nav {
    display: none;
  }

  .site-header {
    border-bottom-color: rgba(33, 31, 56, 0.06);
  }

  .hero-grid {
    padding-top: 128px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 52px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.86;
  }

  .hero-art {
    min-height: 360px;
  }

  .brand-card {
    width: 292px;
  }

  .brand-card-label {
    top: 34px;
  }

  .brand-card p {
    bottom: 32px;
  }

  .orbit-one {
    width: 330px;
    height: 330px;
  }

  .orbit-two {
    width: 370px;
    height: 230px;
  }

  .floating-note {
    font-size: 10px;
  }

  .note-one {
    top: 58px;
  }

  .note-two {
    right: 0;
    bottom: 50px;
  }

  .section {
    padding-block: 82px;
  }

  h2 {
    font-size: 42px;
  }

  .intro-copy {
    font-size: 16px;
    line-height: 1.9;
  }

  .feature-card {
    min-height: 290px;
    padding: 26px;
    border-radius: 22px;
  }

  .feature-card h3,
  .feature-card p {
    right: 26px;
    left: 26px;
  }

  .feature-card h3 {
    bottom: 88px;
  }

  .feature-card p {
    bottom: 22px;
  }

  .feature-dot {
    top: 50px;
    width: 190px;
    height: 190px;
  }

  .company-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-main {
    gap: 18px;
  }

  .footer-legal {
    min-height: 140px;
    gap: 10px;
  }

  .police-record-placeholder {
    padding-left: 0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
