/*
Theme Name: V Distributors Coming Soon
Theme URI: https://example.com/
Author: OpenAI
Author URI: https://openai.com/
Description: A custom one-page WordPress landing theme for V Distributors powered by Vovoya Inc.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: vdistributors-coming-soon
*/

:root {
  --bg: #05050a;
  --bg-2: #0b0b13;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.78);
  --line: rgba(255,255,255,0.12);
  --blue: #1296ff;
  --cyan: #27d8ff;
  --orange: #ffb100;
  --pink: #ff0aa4;
  --purple: #8b2cff;
  --card: rgba(11, 11, 20, 0.72);
  --card-border: rgba(255,255,255,0.14);
  --shadow: 0 25px 70px rgba(0,0,0,0.45);
  --radius: 28px;
  --gradient-main: linear-gradient(90deg, #0f88ff 0%, #6f45ff 48%, #ff1fa8 100%);
  --gradient-warm: linear-gradient(135deg, #ffca0a 0%, #ff8d2d 35%, #ff3c68 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 78%, rgba(15,136,255,0.16), transparent 22%),
    radial-gradient(circle at 88% 80%, rgba(255,31,168,0.18), transparent 24%),
    linear-gradient(180deg, #020205 0%, #06060d 60%, #040409 100%);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 50vw;
  height: 50vw;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.45;
}

.site-shell::before {
  left: -10vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(18,150,255,0.22) 0%, transparent 64%);
}

.site-shell::after {
  right: -10vw;
  bottom: -12vw;
  background: radial-gradient(circle, rgba(255,10,164,0.24) 0%, transparent 64%);
}

.vd-lines {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34vh;
  pointer-events: none;
  opacity: 0.95;
  background:
    radial-gradient(120% 120% at 0% 100%, transparent 0 52%, rgba(18,150,255,0.22) 52.4%, transparent 53.2%),
    radial-gradient(114% 114% at 0% 100%, transparent 0 56%, rgba(18,150,255,0.18) 56.4%, transparent 57.2%),
    radial-gradient(108% 108% at 0% 100%, transparent 0 60%, rgba(18,150,255,0.14) 60.4%, transparent 61.2%),
    radial-gradient(120% 120% at 100% 100%, transparent 0 52%, rgba(255,58,120,0.22) 52.4%, transparent 53.2%),
    radial-gradient(114% 114% at 100% 100%, transparent 0 56%, rgba(255,31,168,0.18) 56.4%, transparent 57.2%),
    radial-gradient(108% 108% at 100% 100%, transparent 0 60%, rgba(255,177,0,0.14) 60.4%, transparent 61.2%);
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 42px 0 72px;
  position: relative;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 54px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: auto;
  max-height: 76px;
  object-fit: contain;
}

.brand-divider {
  width: 1px;
  height: 62px;
  background: rgba(255,255,255,0.28);
}

.kicker {
  text-align: center;
  margin-bottom: 24px;
}

.kicker-top,
.kicker-bottom {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 700;
}

.kicker-top {
  color: var(--blue);
  font-size: 1.05rem;
}

.kicker-mid {
  margin: 10px 0 8px;
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.kicker-bottom {
  font-size: 1.05rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.headline {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.headline h1 {
  margin: 0;
  line-height: 0.94;
  font-size: clamp(3.1rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.headline .coming-soon {
  display: block;
  margin-top: 16px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.underline {
  width: 240px;
  max-width: 55vw;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f88ff, #a638ff, #ff9a1f);
  margin: 28px auto 34px;
}

.subheadline {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  line-height: 1.45;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 64px auto 42px;
  width: min(1120px, 100%);
  border-top: 1px solid transparent;
}

.feature-card {
  padding: 10px 20px;
  text-align: center;
  position: relative;
}

.feature-card + .feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(255,255,255,0.16);
}

.feature-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}

.feature-card:nth-child(1) .feature-icon svg { stroke: var(--blue); }
.feature-card:nth-child(2) .feature-icon svg { stroke: var(--orange); }
.feature-card:nth-child(3) .feature-icon svg { stroke: var(--pink); }
.feature-card:nth-child(4) .feature-icon svg { stroke: var(--purple); }
.feature-card:nth-child(5) .feature-icon svg { stroke: var(--cyan); }

.feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(255,255,255,0.96);
}

.contact-panel {
  width: min(1040px, 100%);
  margin: 0 auto 28px;
  padding: 30px 28px 26px;
  border-radius: var(--radius);
  position: relative;
  background: linear-gradient(180deg, rgba(7,8,15,0.84), rgba(13,8,18,0.78));
  box-shadow: var(--shadow);
  border: 1px solid transparent;
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, rgba(18,150,255,0.8), rgba(143,44,255,0.7), rgba(255,90,95,0.7));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.contact-panel h2,
.contact-panel p {
  text-align: center;
  margin: 0;
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact-panel .contact-label {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.contact-person {
  padding: 12px 16px;
  text-align: center;
  position: relative;
}

.contact-person + .contact-person::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(255,255,255,0.16);
}

.contact-person strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.contact-person:nth-child(1) strong { color: var(--blue); }
.contact-person:nth-child(2) strong { color: #9b48ff; }
.contact-person:nth-child(3) strong { color: var(--pink); }

.contact-person a {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  color: rgba(255,255,255,0.96);
}

.service-strip {
  margin: 30px auto 18px;
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1.1fr auto 1.1fr auto 1.1fr auto 1.1fr;
  gap: 18px;
  align-items: center;
}

.service-card {
  min-height: 260px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15,15,24,0.72), rgba(8,8,14,0.92));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.service-stage {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 85%, rgba(0,0,0,0.4), transparent 35%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
}

.service-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 72%;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15,136,255,0.7) 0%, rgba(143,44,255,0.2) 55%, transparent 78%);
  filter: blur(6px);
}

.phone-shape,
.glass-piece,
.polisher,
.phone-clean {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
}

.phone-shape {
  width: 32%;
  height: 62%;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.32);
  background: linear-gradient(180deg, #1d1e26, #090b11);
  box-shadow: 0 18px 24px rgba(0,0,0,0.35);
}

.phone-shape::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.phone-shape.cracked::after {
  content: "";
  position: absolute;
  inset: 14px;
  background:
    linear-gradient(65deg, transparent 47%, rgba(255,255,255,0.85) 49%, transparent 51%),
    linear-gradient(115deg, transparent 48%, rgba(255,255,255,0.75) 50%, transparent 52%),
    linear-gradient(20deg, transparent 49%, rgba(255,255,255,0.55) 50%, transparent 51%),
    linear-gradient(160deg, transparent 49%, rgba(255,255,255,0.55) 50%, transparent 51%);
  opacity: 0.8;
}

.glass-piece {
  width: 34%;
  height: 62%;
  border-radius: 20px;
  border: 2px dashed rgba(39,216,255,0.55);
  background: linear-gradient(180deg, rgba(18,150,255,0.14), rgba(18,150,255,0.05));
}

.polisher {
  width: 58%;
  height: 22%;
  border-radius: 999px;
  background: linear-gradient(90deg, #11161f 0%, #212833 55%, #0d1118 100%);
  transform: translate(-50%, -15%) rotate(-23deg);
  box-shadow: 0 16px 20px rgba(0,0,0,0.4);
}

.polisher::before {
  content: "";
  position: absolute;
  left: -10%;
  top: 50%;
  width: 34%;
  height: 140%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #2f3947, #0d1016);
}

.polisher::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -78%;
  width: 34%;
  height: 180%;
  border-radius: 50%;
  background: radial-gradient(circle, #54d9ff 0%, #309bff 32%, rgba(143,44,255,0.9) 52%, rgba(143,44,255,0) 72%);
  filter: blur(2px);
}

.phone-clean {
  width: 32%;
  height: 62%;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.24);
  background: linear-gradient(160deg, #101930 0%, #0f88ff 18%, #6b43ff 60%, #ff3b82 100%);
  box-shadow: 0 18px 24px rgba(0,0,0,0.35);
}

.phone-clean::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.8);
  transform: translateY(-8px);
}

.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  color: rgba(255,255,255,0.94);
}

.footer-contact .mail-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}

.footer-contact .mail-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--purple);
  stroke-width: 1.8;
}

.footer-contact a {
  color: var(--cyan);
}

.site-footer {
  padding: 0 0 26px;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px 0; }
  .feature-card:nth-child(4)::before,
  .feature-card:nth-child(5)::before { display: none; }
  .feature-card:nth-child(4),
  .feature-card:nth-child(5) { grid-column: span 1; }
  .service-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .arrow { display: none; }
}

@media (max-width: 782px) {
  .hero { padding-top: 24px; }
  .brand-divider { display: none; }
  .brand-row { gap: 18px; }
  .brand { justify-content: center; width: 100%; }
  .brand img { max-height: 58px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card + .feature-card::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 8px; }
  .contact-person + .contact-person::before { display: none; }
  .contact-person { padding: 16px 8px; }
  .service-strip { grid-template-columns: 1fr; }
  .service-card { min-height: 220px; }
  .footer-contact { font-size: 1rem; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1200px); }
  .headline h1 { font-size: 2.8rem; }
  .subheadline { font-size: 1rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 22px 18px; }
  .contact-panel .contact-label { font-size: 1.3rem; }
}
