/* =========================================================
   ADULT INNOVATION — 2026 HOMEPAGE
   Uses the existing Adult Innovation graphical assets.
   Replace your homepage stylesheet with this file.
   ========================================================= */

:root {
  --pink: #ff1f40;
  --pink-bright: #ff3150;
  --ink: #09090b;
  --ink-2: #111114;
  --surface: #f5f5f7;
  --white: #fff;
  --text: #18181b;
  --muted: #66666d;
  --line: rgba(20,20,24,.12);
  --container: 1240px;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0,0,0,.10);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

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

button,
input,
textarea { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.section {
  padding: 120px 0;
}

.section-dark {
  padding: 120px 0;
  background: #09090b;
  color: white;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 65px;
  text-align: center;
}

.section-heading h2 {
  margin: 15px 0 15px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
}

.section-heading h2 em {
  color: var(--pink);
  font-style: normal;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading.light p { color: #9b9ba3; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(0,0,0,.07);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: auto;
  height: 44px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav > a {
  position: relative;
  padding: 11px 17px;
  font-size: 13px;
  font-weight: 700;
  color: #222228;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 4px;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.site-nav > a:hover::after,
.site-nav > a.active::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 8px;
  color: white !important;
  background: var(--ink);
  border-radius: 999px;
  transition: .25s ease;
}

.nav-cta:hover {
  background: var(--pink);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: white;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  padding: 145px 0 90px;
  overflow: hidden;
  color: white;
  background: #0a0a0c url("../images/banner.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 38%, rgba(255,31,64,.18), transparent 34%),
    linear-gradient(90deg, rgba(5,5,7,.92) 0%, rgba(5,5,7,.72) 52%, rgba(5,5,7,.38) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: clamp(50px, 7vw, 105px);
  align-items: center;
}

.hero-brand {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-brand img {
  width: min(390px, 80%);
  margin-bottom: 26px;
}

.hero-copy h1 {
  max-width: 790px;
  margin: 16px 0 22px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(48px, 6vw, 86px);
  line-height: .97;
  letter-spacing: -.065em;
}

.hero-copy h1 span { color: var(--pink); }

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: #d2d2d6;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: .25s ease;
}

.button-primary {
  color: white;
  background: var(--pink);
  box-shadow: 0 12px 30px rgba(255,31,64,.22);
}

.button-primary:hover {
  background: var(--pink-bright);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255,31,64,.30);
}

.button-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.05);
}

.button-ghost:hover {
  background: white;
  color: var(--ink);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark:hover { background: var(--pink); }

.button-full { width: 100%; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 38px;
  color: #aaaab1;
  font-size: 12px;
}

.hero-meta strong { color: white; }

.hero-meta i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--pink);
}

.hero-form-card {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(15,15,18,.68);
  box-shadow: 0 30px 80px rgba(0,0,0,.30);
  backdrop-filter: blur(18px);
}

.card-label {
  color: var(--pink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero-form-card h2 {
  margin: 10px 0 7px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 31px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.hero-form-card > p {
  margin: 0 0 24px;
  color: #aaaab1;
  font-size: 13px;
}

.hero-form-card label,
.contact-form-card label {
  display: block;
  margin-bottom: 14px;
}

.hero-form-card label > span,
.contact-form-card label > span {
  display: block;
  margin-bottom: 7px;
  color: #aaaab1;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  outline: 0;
  background: rgba(255,255,255,.07);
  color: white;
  transition: border .2s, background .2s;
}

input {
  height: 52px;
  padding: 0 15px;
}

textarea {
  min-height: 112px;
  padding: 14px 15px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder { color: #777780; }

input:focus,
textarea:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,.10);
}

.hero-form-card .button { margin-top: 5px; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  width: 24px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 3px;
  height: 7px;
  margin: 7px auto;
  border-radius: 5px;
  background: var(--pink);
  animation: scroll 1.7s infinite;
}

@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(9px); opacity: 1; }
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 365px;
  padding: 55px 34px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: .3s ease;
}

.service-card:hover {
  border-color: rgba(255,31,64,.35);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-card.featured {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.service-icon {
  position: absolute;
  top: -31px;
  left: 30px;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,.09);
}

.service-icon i {
  display: block;
  width: 50px;
  height: 50px;
}

.service-icon .adultdesign { background: url("../images/adult-design.png") center/contain no-repeat; }
.service-icon .programming { background: url("../images/programming.png") center/contain no-repeat; }
.service-icon .graphics { background: url("../images/graphics-design.png") center/contain no-repeat; }

.service-number {
  color: #aaaab1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
}

.service-card h3 {
  margin: 14px 0 13px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 31px;
  letter-spacing: -.045em;
}

.service-card p {
  margin: 0 0 28px;
  color: #66666d;
  font-size: 14px;
  line-height: 1.75;
}

.service-card.featured p { color: #aaaab1; }

.text-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 7px;
  color: var(--pink);
  transition: transform .2s;
}

.text-link:hover span { transform: translateX(5px); }

/* Tech */
.tech-strip {
  padding: 55px 0;
  color: white;
  background: #0d0d10;
}

.tech-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.tech-inner h2 {
  margin: 9px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 26px;
  letter-spacing: -.035em;
}

.tech-list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e2e2e5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.tech-item img {
  width: 38px;
  max-height: 38px;
  object-fit: contain;
}

/* Experience */
.experience { background: #f6f6f7; }

.experience-intro {
  max-width: 850px;
  margin: 0 auto 75px;
  text-align: center;
}

.experience-intro h2 {
  margin: 16px 0 18px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(43px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.06em;
}

.experience-intro h2 span { color: var(--pink); }

.experience-intro p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  align-items: center;
  gap: 80px;
}

.portfolio-preview {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.portfolio-preview img {
  width: 100%;
  height: auto;
}

.benefits { display: grid; gap: 25px; }

.benefits article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.benefits article > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
}

.benefits h3 {
  margin: 0 0 5px;
  font-family: Manrope, Inter, sans-serif;
  font-size: 20px;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Platforms */
.platform-section {
  padding: 100px 0;
  background: white;
}

.platform-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 80px;
}

.platform-inner h2 {
  max-width: 700px;
  margin: 14px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(40px, 5vw, 65px);
  line-height: 1;
  letter-spacing: -.06em;
}

.platform-inner h2 span { color: var(--pink); }

.platform-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  position: relative;
  padding: 32px 32px 27px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: #111114;
  transition: .25s ease;
}

.review-card:hover {
  border-color: rgba(255,31,64,.4);
  transform: translateY(-4px);
}

.stars {
  margin-bottom: 17px;
  color: var(--pink);
  font-size: 14px;
  letter-spacing: 2px;
}

.review-card p {
  min-height: 75px;
  margin: 0 0 22px;
  color: #c5c5cb;
  font-size: 14px;
  line-height: 1.75;
}

.review-card cite {
  color: white;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

/* CTA */
.cta-band {
  padding: 75px 0;
  border-bottom: 1px solid var(--line);
  background: white;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  margin: 10px 0 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(36px, 4vw, 55px);
  line-height: 1;
  letter-spacing: -.055em;
}

.cta-inner h2 span { color: var(--pink); }

/* Contact */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  color: white;
  background: #09090b url("../images/banner-footer.jpg") center/cover no-repeat;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,6,8,.95), rgba(6,6,8,.78));
}

.contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -130px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255,31,64,.16);
  filter: blur(70px);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  max-width: 650px;
  margin: 16px 0 20px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(45px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.06em;
}

.contact-copy h2 span { color: var(--pink); }

.contact-copy > p {
  max-width: 570px;
  color: #b5b5bc;
}

.contact-points {
  display: grid;
  gap: 13px;
  margin-top: 35px;
}

.contact-points div {
  display: flex;
  gap: 20px;
  align-items: baseline;
}

.contact-points strong {
  width: 72px;
  color: var(--pink);
  font-size: 10px;
  letter-spacing: .14em;
}

.contact-points span {
  color: #dddde1;
  font-size: 13px;
}

.contact-form-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(18,18,22,.74);
  box-shadow: 0 35px 100px rgba(0,0,0,.30);
  backdrop-filter: blur(16px);
}

.contact-form-card input,
.contact-form-card textarea {
  border-color: rgba(255,255,255,.13);
}

.contact-form-card textarea { min-height: 150px; }

.contact-form-card .button { margin-top: 7px; }

/* Footer */
.site-footer {
  color: #8f8f96;
  background: #050506;
}

.footer-inner {
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-brand img { width: 145px; }

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.back-top {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: white;
}

.back-top:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1050px) {
  .hero-grid,
  .experience-grid,
  .platform-inner,
  .contact-grid { gap: 45px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; }

  .service-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .service-card { min-height: 300px; }

  .tech-inner { align-items: flex-start; flex-direction: column; }
  .experience-grid { grid-template-columns: 1fr; }
  .portfolio-preview { max-width: 760px; margin-inline: auto; }
  .benefits { max-width: 760px; margin-inline: auto; }
}

@media (max-width: 800px) {
  .site-header { height: 68px; }
  .brand img { height: 38px; }

  .menu-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
  }

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

  .site-nav > a { padding: 13px 15px; }
  .nav-cta { margin: 3px 0 0; text-align: center; }

  .hero {
    min-height: auto;
    padding: 115px 0 75px;
  }

  .hero-copy h1 { font-size: clamp(45px, 12vw, 68px); }
  .hero-brand img { width: min(330px, 85%); }
  .hero-meta { display: grid; gap: 10px; }

  .section,
  .section-dark,
  .contact-section { padding: 82px 0; }

  .tech-list { width: 100%; justify-content: space-between; gap: 10px; }

  .platform-inner,
  .contact-grid { grid-template-columns: 1fr; }

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

  .cta-inner { align-items: flex-start; flex-direction: column; }

  .footer-inner {
    padding: 22px 0;
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 30px), var(--container)); }

  .hero-form-card,
  .contact-form-card { padding: 25px 20px; }

  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }

  .tech-list { display: grid; grid-template-columns: repeat(2, 1fr); }
  .tech-item { justify-content: center; }

  .service-card { padding: 48px 24px 28px; }

  .portfolio-preview { padding: 14px; }

  .benefits article { grid-template-columns: 35px 1fr; }

  .contact-points div { display: grid; gap: 3px; }

  .footer-inner { justify-content: center; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
