:root {
  --ink: #f8f3ff;
  --paper: #050408;
  --muted: #b8a9c5;
  --line: rgba(226, 190, 244, 0.2);
  --moon: #e9bef4;
  --moon-dark: #a274b2;
  --white: #ffffff;
  --panel: #120d18;
  --violet: #7a35ff;
  --violet-deep: #2a1238;
  --black: #050408;
  --glow: rgba(233, 190, 244, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 18%, rgba(122, 53, 255, 0.38), transparent 32rem),
    radial-gradient(circle at 18% 72%, rgba(233, 190, 244, 0.16), transparent 28rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(5, 4, 8, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(233, 190, 244, 0.72);
  box-shadow: 0 0 24px rgba(162, 116, 178, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: #ded2eb;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero {
  background: linear-gradient(135deg, #050408 0%, #120718 42%, #2a1238 100%);
  min-height: calc(100svh - 77px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(22px, 6vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moon);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.75rem, 7vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #d4c8df;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-band {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(233, 190, 244, 0.52);
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--black);
  background: var(--moon);
  box-shadow: 0 0 28px rgba(233, 190, 244, 0.42);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-image {
  min-height: 520px;
  background:
    linear-gradient(90deg, rgba(5, 4, 8, 1) 0%, rgba(42, 18, 56, 0.82) 38%, rgba(5, 4, 8, 0.44) 100%),
    linear-gradient(0deg, rgba(5, 4, 8, 0.52), rgba(122, 53, 255, 0.44)),
    url("/static/images/hero-devices.png") center / cover no-repeat;
  background-blend-mode: normal, multiply, normal;
  box-shadow: inset 0 0 120px rgba(5, 4, 8, 0.78);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #120818;
  color: var(--white);
}

.trust-strip span {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  border-right: 1px solid rgba(233, 190, 244, 0.18);
}

.section,
.assurance,
.contact-band {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.assurance-list p {
  color: var(--muted);
  line-height: 1.55;
}

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

.instagram-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(233, 190, 244, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
}

.instagram-card h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.instagram-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 560px !important;
  min-height: 0 !important;
  max-height: 560px !important;
  margin: 0 !important;
  background:
    radial-gradient(circle at 50% 16%, rgba(233, 190, 244, 0.25), transparent 9rem),
    linear-gradient(180deg, #1a0f22, #08050c);
  border-radius: 8px !important;
  overflow: hidden;
}

.instagram-card iframe {
  width: 100% !important;
  height: 560px !important;
  min-height: 0 !important;
  max-height: 560px !important;
}

.instagram-card .instagram-media a {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--moon);
  background: transparent;
  font-weight: 800;
  text-align: center;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(233, 190, 244, 0.08);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-list {
  display: grid;
  gap: 14px;
}

.assurance-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(233, 190, 244, 0.18);
  font-size: 1.08rem;
}

.contact-band {
  justify-content: space-between;
  background: #09050d;
  color: var(--white);
}

.contact-band .eyebrow {
  color: var(--moon);
}

.contact-band .button.primary {
  color: var(--black);
  background: var(--moon);
  border-color: var(--moon);
}

@media (max-width: 900px) {
  .site-header {
    position: static;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-image {
    min-height: 430px;
    order: -1;
    background:
      linear-gradient(0deg, rgba(5, 4, 8, 1) 0%, rgba(5, 4, 8, 0.34) 64%),
      linear-gradient(0deg, rgba(5, 4, 8, 0.5), rgba(122, 53, 255, 0.5)),
      url("/static/images/hero-devices.png") center / cover no-repeat;
    background-blend-mode: normal, multiply, normal;
  }

  .instagram-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-card .instagram-media,
  .instagram-card iframe {
    height: 520px !important;
    max-height: 520px !important;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    font-size: 0.88rem;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .instagram-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 330px;
  }

  .instagram-card .instagram-media,
  .instagram-card iframe {
    height: 430px !important;
    max-height: 430px !important;
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 7.75rem;
  }

  .hero-copy {
    max-width: 700px;
  }
}
