* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, #00ffcc22, transparent 30%),
    radial-gradient(circle at bottom right, #ff00ff22, transparent 30%),
    #050505;
  background-size: 160% 160%, 160% 160%, auto;
  animation: drift 22s ease-in-out infinite;
  padding: 30px 7%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 40%;
  background-image:
    linear-gradient(#00ffd524 1px, transparent 1px),
    linear-gradient(90deg, #00ffd524 1px, transparent 1px);
  background-size: 56px 40px;
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  pointer-events: none;
  z-index: 0;
}

@keyframes drift {
  0%, 100% { background-position: 0% 0%, 100% 100%, 0 0; }
  50% { background-position: 12% 8%, 88% 92%, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    animation: none;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
  text-decoration: none;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
}

.nav-links a:hover {
  color: #00ffd5;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: white;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 18px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-content {
  margin-top: 130px;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.text-glow {
  background: linear-gradient(100deg, #00ffd5, #ff4fd8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-visual {
  height: 460px;
  pointer-events: none;
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-46%);
  width: 460px;
  z-index: 1;
}

.orbit-chip {
  align-items: center;
  animation: chip-float 6s ease-in-out infinite;
  background: #0d0d0dcc;
  backdrop-filter: blur(6px);
  border-radius: 18px;
  display: flex;
  justify-content: center;
  padding: 14px;
  position: absolute;
}

.orbit-chip img {
  display: block;
  width: 100%;
}

.chip-icanna {
  border: 1px solid #3fa36255;
  box-shadow: 0 0 40px #3fa36230, inset 0 1px 0 #ffffff10;
  right: 10px;
  top: 0;
  width: 150px;
  animation-delay: 0s;
}

.chip-truevirgin {
  border: 1px solid #55c8ff55;
  box-shadow: 0 0 40px #55c8ff30, inset 0 1px 0 #ffffff10;
  right: 220px;
  top: 130px;
  width: 116px;
  animation-delay: 1.4s;
}

.chip-matchpanic {
  border: 1px solid #ff4fd855;
  box-shadow: 0 0 46px #ff4fd830, inset 0 1px 0 #ffffff10;
  right: 0;
  top: 250px;
  width: 172px;
  animation-delay: 0.8s;
}

.chip-autoping {
  border: 1px solid #ffb31a55;
  box-shadow: 0 0 36px #ffb31a2c, inset 0 1px 0 #ffffff10;
  right: 250px;
  top: 340px;
  width: 108px;
  animation-delay: 2.1s;
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-chip {
    animation: none;
  }
}

@media (max-width: 1150px) {
  .hero-visual {
    display: none;
  }
}

.tag {
  color: #00ffd5;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

h1 {
  font-size: 78px;
  line-height: 0.95;
  margin-bottom: 25px;
}

.subtitle {
  color: #aaa;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.primary-btn {
  display: inline-block;
  background: #00ffd5;
  color: black;
  padding: 16px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.secondary-btn {
  display: inline-block;
  border: 1px solid #3a3a3a;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.secondary-btn:hover,
.store-buttons a:hover,
.text-link:hover {
  border-color: #00ffd5;
  color: #00ffd5;
}

.section {
  padding: 90px 7%;
}

.section-kicker {
  color: #00ffd5;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section h2 {
  font-size: 42px;
  margin-bottom: 35px;
}

.group-heading {
  color: white;
  font-size: 22px;
  margin: 10px 0 20px;
}

.group-heading:not(:first-of-type) {
  margin-top: 55px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 15px;
}

.business-grid {
  grid-template-columns: repeat(3, 1fr);
}

.app-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 30px;
  min-height: 220px;
}

.featured-card,
.autoping-card,
.icanna-card,
.truevirgin-card {
  grid-column: span 2;
}

.business-grid .autoping-card,
.business-grid .icanna-card,
.business-grid .truevirgin-card {
  grid-column: span 1;
}

.featured-card,
.autoping-card,
.icanna-card,
.truevirgin-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
}

.featured-card {
  background:
    linear-gradient(145deg, #170813 0%, #141019 42%, #071722 100%);
  border-color: #45233e;
  box-shadow: inset 0 1px 0 #ffffff10;
}

.autoping-card {
  background:
    linear-gradient(145deg, #071523 0%, #0c2031 55%, #1a1609 100%);
  border-color: #243c4e;
  box-shadow: inset 0 1px 0 #ffffff10;
}

.icanna-card {
  background:
    linear-gradient(145deg, #06140f 0%, #0d1712 55%, #1a1608 100%);
  border-color: #3fa36240;
  box-shadow: inset 0 1px 0 #ffffff10;
}

.truevirgin-card {
  background:
    linear-gradient(145deg, #060b17 0%, #0a1830 55%, #071f2a 100%);
  border-color: #55c8ff40;
  box-shadow: inset 0 1px 0 #ffffff10;
}

.logo-stage {
  align-items: center;
  border-radius: 8px;
  display: flex;
  height: 210px;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  padding: 24px;
}

.matchpanic-stage {
  background:
    radial-gradient(circle at 76% 24%, #ff1d8060, transparent 34%),
    radial-gradient(circle at 25% 30%, #00b7ff55, transparent 32%),
    linear-gradient(135deg, #090b13 0%, #1a1018 52%, #241203 100%);
}

.autoping-stage {
  background:
    radial-gradient(circle at 72% 22%, #f5aa1740, transparent 36%),
    linear-gradient(135deg, #06131f 0%, #10283a 100%);
  border: 1px solid #f5aa1724;
}

.icanna-stage {
  background:
    radial-gradient(circle at 72% 22%, #d2b97640, transparent 36%),
    radial-gradient(circle at 25% 30%, #3fa36245, transparent 32%),
    linear-gradient(135deg, #06140f 0%, #10281c 100%);
  border: 1px solid #d2b97624;
}

.truevirgin-stage {
  background:
    radial-gradient(circle at 72% 22%, #55c8ff40, transparent 36%),
    linear-gradient(135deg, #060b17 0%, #0d2c47 100%);
  border: 1px solid #55c8ff24;
}

.app-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.app-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #00ffd5;
}

.autoping-card h3,
.autoping-card .app-status,
.autoping-card .text-link {
  color: #ffb31a;
}

.icanna-card h3 {
  color: #d2b976;
}

.icanna-card .app-status.live {
  color: #3fa362;
}

.truevirgin-card h3 {
  color: #55c8ff;
}

.truevirgin-card .app-status.live {
  color: #55c8ff;
}

.app-card p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 25px;
}

.app-logo {
  height: auto;
  display: block;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.matchpanic-logo {
  width: min(100%, 340px);
}

.autoping-logo {
  width: min(100%, 430px);
}

.icanna-logo {
  width: min(100%, 340px);
}

.truevirgin-logo {
  width: min(100%, 300px);
}

.app-status {
  color: #ff4fd8;
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.app-status.live {
  color: #00ffd5;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.store-buttons a {
  border: 1px solid #444;
  color: white;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
}

.store-buttons span {
  color: #ff4fd8;
  font-weight: bold;
}

.text-link {
  color: #00ffd5;
  font-weight: bold;
  margin-top: auto;
  text-decoration: none;
}

.privacy {
  background:
    radial-gradient(circle at 78% 4%, #ffb31a24, transparent 28%),
    linear-gradient(180deg, #050505 0%, #071523 18%, #0b1b28 100%);
}

.privacy-page {
  background: #071523;
}

.policy-nav {
  background: #050b10;
  border-bottom: 1px solid #ffffff12;
  padding: 24px 7%;
}

.standalone-policy {
  min-height: 100vh;
}

.privacy .section-kicker,
.privacy h1 {
  color: #ffb31a;
}

.standalone-policy h1 {
  font-size: 52px;
  line-height: 1.05;
  margin-bottom: 35px;
}

.policy-panel {
  background:
    linear-gradient(145deg, #071523 0%, #0c2031 58%, #11190f 100%);
  border: 1px solid #254255;
  border-radius: 8px;
  box-shadow: 0 22px 70px #00000055, inset 0 1px 0 #ffffff12;
  max-width: 1100px;
  padding: 36px;
}

.policy-hero {
  align-items: center;
  border-bottom: 1px solid #ffffff14;
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(220px, 360px) 1fr;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.policy-hero img {
  background:
    radial-gradient(circle at 72% 22%, #f5aa173d, transparent 40%),
    linear-gradient(135deg, #06131f 0%, #10283a 100%);
  border: 1px solid #f5aa1724;
  border-radius: 8px;
  display: block;
  padding: 24px;
  width: 100%;
}

.policy-panel h2 {
  color: #ffb31a;
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.policy-panel > h3 {
  border-top: 1px solid #ffffff14;
  color: #ffb31a;
  font-size: 22px;
  margin: 34px 0 14px;
  padding-top: 28px;
}

.policy-card h4 {
  border-top: 0;
  color: white;
  font-size: 18px;
  margin-bottom: 12px;
  padding-top: 0;
}

.policy-panel p {
  color: #c7d0d8;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 8px;
}

.policy-card {
  background: #07131f99;
  border: 1px solid #ffffff12;
  border-radius: 8px;
  padding: 22px;
}

.policy-card p:last-child,
.policy-contact p:last-child,
.service-list p:last-child {
  margin-bottom: 0;
}

.policy-panel ul {
  color: #c7d0d8;
  line-height: 1.7;
  margin: 10px 0 18px 20px;
}

.policy-panel li {
  margin-bottom: 6px;
}

.policy-list {
  columns: 2;
  column-gap: 42px;
}

.service-list,
.policy-contact {
  background: #07131f99;
  border: 1px solid #ffffff12;
  border-radius: 8px;
  padding: 22px;
}

.policy-panel a {
  color: #ffb31a;
}

.policy-panel .updated {
  color: #8fa0ad;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.policy-footnote {
  border-top: 1px solid #ffffff14;
  color: #8fa0ad;
  font-size: 14px;
  margin-top: 28px;
  padding-top: 20px;
}

.about p,
.contact p {
  color: #aaa;
  font-size: 18px;
  line-height: 1.7;
  max-width: 800px;
}

.about {
  background:
    radial-gradient(circle at 6% 20%, #00ffd516, transparent 32%),
    radial-gradient(circle at 96% 80%, #ff00ff16, transparent 34%);
}

.founder-grid {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(200px, 280px) 1fr;
  margin-top: 25px;
}

.founder-photo-frame {
  background: linear-gradient(150deg, #00ffd5, #7a5cff 50%, #ff4fd8);
  border-radius: 18px;
  box-shadow: 0 25px 60px #00000080, 0 0 50px #ff00ff1c;
  padding: 4px;
}

.founder-photo {
  border-radius: 15px;
  display: block;
  width: 100%;
}

.founder-quote {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 100%;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.founder-tags span {
  border: 1px solid #00ffd540;
  border-radius: 999px;
  color: #00ffd5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.contact {
  background:
    radial-gradient(circle at 50% 100%, #00ffd51a, transparent 45%),
    radial-gradient(circle at 12% 0%, #ff00ff16, transparent 40%);
}

.contact-panel {
  background: linear-gradient(145deg, #0d0517 0%, #0a0f16 55%, #071722 100%);
  border: 1px solid #2a2a3a;
  border-radius: 18px;
  box-shadow: 0 25px 70px #00000070, inset 0 1px 0 #ffffff10, 0 0 60px #00ffd514;
  margin: 0 auto;
  max-width: 620px;
  padding: 56px 44px;
  text-align: center;
}

.contact-panel .section-kicker {
  margin-bottom: 10px;
}

.contact-panel h2 {
  margin-bottom: 18px;
}

.contact-panel p {
  margin: 0 auto 32px;
  max-width: 460px;
}

.contact-panel .primary-btn {
  box-sizing: border-box;
  font-size: 18px;
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (max-width: 800px) {
  .hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    background: #060606;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    border-top: 1px solid #222;
    box-shadow: 0 20px 40px #00000080;
    display: none;
    flex-direction: column;
    gap: 2px;
    left: 0;
    margin-top: 20px;
    padding: 6px 7%;
    position: absolute;
    right: 0;
    top: 100%;
  }

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

  .nav-links a {
    border-bottom: 1px solid #ffffff12;
    font-size: 17px;
    padding: 16px 0;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .hero-content {
    margin-top: 90px;
  }

  h1 {
    font-size: 52px;
  }

  .subtitle {
    font-size: 18px;
  }

  .app-grid,
  .business-grid {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .autoping-card,
  .icanna-card,
  .truevirgin-card {
    grid-column: auto;
  }

  .logo-stage {
    height: 180px;
    padding: 20px;
  }

  .logo span {
    font-size: 14px;
  }

  .section {
    padding: 70px 7%;
  }

  .section h2 {
    font-size: 34px;
  }

  .contact-panel {
    padding: 40px 26px;
  }

  .policy-panel {
    padding: 24px;
  }

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

  .founder-photo-frame {
    max-width: 260px;
  }

  .policy-list {
    columns: 1;
  }

  .standalone-policy h1 {
    font-size: 36px;
  }

  .policy-panel h2 {
    font-size: 28px;
  }
}
.footer {
  padding: 30px 7%;
  border-top: 1px solid #222;
  color: #777;
  font-size: 14px;
}
