@import url('https://fonts.googleapis.com/css2?family=DM+Mono&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #f7f7fb;
  --muted: #a8a9b8;
  --line: rgba(255, 255, 255, 0.12);
  --background: #0c0d15;
  --pink: #ff8a4c;
  --apricot: #ffb15f;
}

* { box-sizing: border-box; }

html { background: var(--background); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-shell {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  overflow: hidden;
}

.glow {
  position: absolute;
  z-index: -1;
  width: min(46rem, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.glow-one { top: -24rem; left: -19rem; background: radial-gradient(circle, rgba(247, 138, 184, .19), transparent 67%); }
.glow-two { right: -21rem; bottom: -23rem; background: radial-gradient(circle, rgba(255, 193, 123, .14), transparent 68%); }

.site-header, main, .site-footer {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); font-size: 1.18rem; font-weight: 800; letter-spacing: -.045em; text-decoration: none; }

.brand-mark { display: inline-flex; align-items: center; gap: 3px; height: 1.5rem; padding: 0 .45rem; border-radius: .45rem; background: var(--pink); }
.brand-mark span { display: block; width: 3px; background: #20151f; border-radius: 999px; }
.brand-mark span:nth-child(1) { height: .55rem; }.brand-mark span:nth-child(2) { height: 1rem; }.brand-mark span:nth-child(3) { height: .7rem; }

.header-note, .eyebrow, .number, .site-footer p { color: var(--muted); font-family: "DM Mono", monospace; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }

.hero { padding: clamp(5.75rem, 14vh, 9.5rem) 0 clamp(4.75rem, 10vh, 7.5rem); }
.eyebrow { display: flex; align-items: center; gap: .55rem; margin: 0 0 1.5rem; }
.status-dot { width: .48rem; height: .48rem; border-radius: 50%; background: var(--pink); box-shadow: 0 0 0 .23rem rgba(247, 138, 184, .13); }

h1 { max-width: 900px; margin: 0; font-size: clamp(3.3rem, 8vw, 7.15rem); font-weight: 700; letter-spacing: -.075em; line-height: .98; }
h1 em { color: var(--pink); font-style: normal; }
.intro { max-width: 570px; margin: 2.1rem 0 2rem; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.75; }

.contact-link { display: inline-flex; gap: .7rem; align-items: center; padding: .9rem 1.25rem; color: #17131a; background: var(--ink); border-radius: 999px; font-size: .9rem; font-weight: 800; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.contact-link:hover { box-shadow: 0 8px 30px rgba(247, 138, 184, .22); transform: translateY(-2px); }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.principles article { min-height: 13.5rem; padding: 1.45rem 1.6rem 1.6rem 0; border-right: 1px solid var(--line); }
.principles article + article { padding-left: 1.6rem; }
.principles article:last-child { border-right: 0; }
.number { color: var(--pink); }
h2 { margin: 2.5rem 0 .65rem; font-size: 1.05rem; letter-spacing: -.035em; }
.principles p { max-width: 17rem; margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }

.site-footer { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-top: auto; padding: 3rem 0 1.7rem; }
.site-footer p { margin: 0; font-size: .61rem; }
.wave { display: flex; align-items: center; gap: 3px; height: 1.8rem; }
.wave i { width: 3px; height: 20%; border-radius: 9px; background: var(--pink); animation: pulse 1.8s ease-in-out infinite; }
.wave i:nth-child(2), .wave i:nth-child(8) { height: 58%; animation-delay: .2s; }.wave i:nth-child(3), .wave i:nth-child(7) { height: 100%; animation-delay: .4s; }.wave i:nth-child(4), .wave i:nth-child(6) { height: 72%; animation-delay: .6s; }.wave i:nth-child(5) { height: 40%; animation-delay: .8s; }
@keyframes pulse { 50% { transform: scaleY(.55); } }

@media (max-width: 700px) {
  .site-header, main, .site-footer { width: min(100% - 2.25rem, 1120px); }
  .header-note { display: none; }
  .hero { padding-top: 5rem; }
  h1 { font-size: clamp(2.9rem, 13vw, 4.7rem); }
  .principles { grid-template-columns: 1fr; }
  .principles article, .principles article + article { min-height: auto; padding: 1.4rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principles article:last-child { border-bottom: 0; }
  h2 { margin-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }
