:root {
  --purple: #6d4aff;
  --purple-2: #9278ff;
  --green: #47d96f;
  --ink: #0d0d16;
  --ink-2: #171724;
  --text: #1b1b26;
  --muted: #676777;
  --paper: #f5f6fa;
  --white: #ffffff;
  --line: #e5e6ee;
  --radius: 22px;
  --shadow: 0 22px 55px rgba(19, 16, 45, .10);
  --max: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(109, 74, 255, .35);
  outline-offset: 3px;
}
.container { width: min(100% - 40px, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 22, .94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  width: min(100% - 40px, var(--max));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; }
.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, var(--purple), var(--green));
  box-shadow: 0 8px 22px rgba(109, 74, 255, .32);
}
.brand-text .my, .footer-grid .my { color: var(--purple-2); }
.brand-text .go, .footer-grid .go { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--white); background: rgba(255, 255, 255, .09); }
.nav-toggle { display: none; border: 0; background: transparent; color: var(--white); font-size: 1.7rem; cursor: pointer; }

/* Home */
.hero-home {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(109, 74, 255, .34), transparent 33%),
    radial-gradient(circle at 15% 95%, rgba(71, 217, 111, .12), transparent 32%),
    var(--ink);
  padding: 88px 0 92px;
}
.hero-home__grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 72px; align-items: center; }
.kicker {
  margin: 0 0 16px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
}
.kicker--dark { color: var(--purple); }
.hero-home h1 { margin: 0; max-width: 760px; font-size: clamp(2.7rem, 6vw, 5.5rem); line-height: .98; letter-spacing: -.055em; }
.hero-home h1 span { color: var(--purple-2); }
.hero-copy { max-width: 650px; margin: 28px 0 0; color: rgba(255, 255, 255, .74); font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; list-style: none; margin: 30px 0 0; padding: 0; color: rgba(255, 255, 255, .72); font-size: .9rem; }
.hero-points li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.tap-panel {
  position: relative;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .035));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .35);
}
.tap-panel::after { content: ""; position: absolute; width: 150px; height: 150px; right: -45px; bottom: -55px; border-radius: 50%; background: rgba(71, 217, 111, .12); }
.tap-panel__signal { color: var(--green); font-weight: 900; font-size: 2.4rem; letter-spacing: -.4em; transform: rotate(-30deg); width: max-content; margin: 4px 0 30px 12px; }
.tap-panel__label { color: var(--purple-2); font-weight: 800; letter-spacing: .12em; font-size: .75rem; }
.tap-panel strong { display: block; max-width: 340px; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; }
.tap-panel ol { margin: 28px 0 0; padding-left: 1.4rem; color: rgba(255, 255, 255, .68); }

/* Shared sections */
.section { padding: 82px 0; }
.section--tight { padding: 48px 0; }
.section--dark { color: var(--white); background: var(--ink-2); }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading h2, .split-copy h2 { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; letter-spacing: -.035em; }
.section-heading p { margin: 0; color: var(--muted); }
.section--dark p { color: rgba(255, 255, 255, .72); }
.lede { max-width: 800px; margin: 0 auto; font-size: 1.08rem; text-align: center; color: var(--muted); }
.split-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.text-link { color: var(--green); font-weight: 800; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  font-size: .94rem;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--white); background: linear-gradient(120deg, var(--purple), #8469ff); box-shadow: 0 13px 28px rgba(109, 74, 255, .30); }
.btn--green { color: #07110a; background: var(--green); box-shadow: 0 13px 28px rgba(71, 217, 111, .22); }
.btn--light { color: var(--white); background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .14); }
.btn--ghost { color: var(--text); background: transparent; border: 1px solid var(--line); }
.cta-center { margin-top: 32px; display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.btn--instagram {
  color: var(--white);
  background: linear-gradient(120deg, #833ab4, #c13584 48%, #e1306c 72%, #f77737);
  box-shadow: 0 13px 28px rgba(193, 53, 132, .24);
}
.instagram-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}
.instagram-icon circle:last-child { fill: currentColor; stroke: none; }
.about-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.instagram-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgba(109, 74, 255, .16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.instagram-callout h3 { margin: 0 0 6px; font-size: 1.35rem; line-height: 1.25; }
.instagram-callout p:not(.kicker) { margin: 0; color: var(--muted); }
.instagram-callout .kicker { margin-bottom: 8px; }
.instagram-callout .btn { flex: 0 0 auto; }

.product-preview-grid, .service-grid, .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-card, .service-card, .article-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.service-card { display: flex; flex-direction: column; }
.service-card .text-link { margin-top: auto; }
.service-grid--five { grid-template-columns: repeat(6, 1fr); }
.service-grid--five .service-card { grid-column: span 2; }
.service-grid--five .service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-grid--five .service-card:nth-child(5) { grid-column: 4 / span 2; }
.mini-card--featured { color: var(--white); background: var(--ink); border-color: var(--ink); transform: translateY(-10px); }
.mini-card__type { display: inline-block; margin-bottom: 34px; color: var(--purple); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.mini-card--featured .mini-card__type { color: var(--green); }
.mini-card h3, .service-card h3, .article-card h3 { margin: 0 0 10px; font-size: 1.25rem; line-height: 1.25; }
.mini-card p, .service-card p, .article-card p { margin: 0 0 24px; color: var(--muted); }
.mini-card--featured p { color: rgba(255, 255, 255, .66); }
.mini-card strong { color: var(--purple); font-size: 1.25rem; }
.mini-card--featured strong { color: var(--green); }
.product-category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-category {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.product-category--available { color: var(--white); background: var(--ink); border-color: var(--ink); }
.product-category__status { margin-bottom: 42px; color: var(--purple); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-category--available .product-category__status { color: var(--green); }
.product-category h3 { margin: 0 0 14px; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.1; }
.product-category p { margin: 0 0 28px; color: var(--muted); }
.product-category--available p { color: rgba(255, 255, 255, .68); }
.product-category .btn, .product-category__notice { margin-top: auto; }
.product-category__notice { color: var(--muted); font-size: .9rem; font-weight: 700; }

/* Legacy page hero */
.hero { color: var(--white); background: var(--ink); }
.hero-media { min-height: 320px; display: grid; place-items: center; text-align: center; padding: 70px 20px; background: radial-gradient(circle at 50% 20%, rgba(109, 74, 255, .32), transparent 40%), var(--ink); }
.hero-media > img, .hero-media > .ph-label { display: none !important; }
.hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4.8rem); letter-spacing: -.045em; line-height: 1; }
.hero p.eyebrow { margin: 0 0 12px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: .75rem; font-weight: 800; }

/* Product catalogue */
.product-group { padding: 64px 0; border-top: 1px solid var(--line); }
.product-group h2 { margin: 0 0 28px; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.035em; }
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card { display: flex; flex-direction: column; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.card-body { flex: 1; display: flex; flex-direction: column; gap: 13px; padding: 28px; }
.card-body h3, .card-body p { margin: 0; }
.price { color: var(--purple); font-size: 1.45rem; font-weight: 900; }
.desc { color: var(--muted); }
.steps { counter-reset: step; list-style: none; margin: 4px 0; padding: 0; display: grid; gap: 9px; }
.steps li { position: relative; padding-left: 30px; font-size: .92rem; }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #07110a;
  background: var(--green);
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 900;
}
.specs { padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
.card-body .btn { align-self: flex-start; margin-top: auto; }
.product-visual {
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 30px;
  color: var(--white);
  text-align: center;
  background: linear-gradient(145deg, #161620, #29293b);
}
.product-visual--light { color: var(--text); background: linear-gradient(145deg, #fff, #e9eaf1); }
.product-visual--accent { background: linear-gradient(145deg, #5b3df0, #151522); }
.product-visual span { display: block; font-size: 2.1rem; font-weight: 900; letter-spacing: -.04em; }
.product-visual small { display: block; margin-top: 6px; opacity: .68; letter-spacing: .12em; font-weight: 800; }
.scenario { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: center; margin-top: 50px; padding: 36px; border-radius: var(--radius); background: #eceef7; }
.scenario > .img-ph { display: none; }
.scenario h3 { margin: 0 0 6px; color: var(--purple); }
.scenario p { margin: 0 0 16px; }

/* Missing-image fallbacks retained for any later supplied photography */
.img-ph { min-height: 170px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #171722, #28283b); }
.img-ph img { width: 100%; height: 100%; object-fit: cover; }
.img-ph.is-empty img { display: none; }
.img-ph .ph-label { display: none; padding: 20px; text-align: center; color: rgba(255, 255, 255, .74); }
.img-ph.is-empty .ph-label { display: block; }
.logo-ph { display: none; }

/* Contact, about and status */
.contact-layout, .about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.founder-note {
  margin: 28px 0;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(19, 16, 45, .07);
}
.founder-note__label { margin: 0 0 4px; color: var(--purple); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.founder-note h3 { margin: 0 0 8px; font-size: 1.35rem; line-height: 1.2; }
.founder-note p:last-child { margin: 0; color: var(--muted); }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info .ic { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 12px; background: #e9e7ff; }
.contact-card { padding: 30px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.contact-card h3 { margin: 0 0 12px; font-size: 1.5rem; line-height: 1.2; }
.contact-card > p:not(.kicker) { margin: 0 0 24px; color: var(--muted); }
.status-box { max-width: 760px; margin: 0 auto; padding: 42px; text-align: center; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.status-box .emoji { font-size: 2rem; }

/* Footer */
.site-footer { margin-top: 0; padding: 52px 0 24px; color: rgba(255, 255, 255, .70); background: var(--ink); }
.footer-grid { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-grid .brand-text { color: var(--white); font-size: 1.15rem; font-weight: 900; }
.footer-grid p { margin: 8px 0 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 12px 0 0; padding: 0; }
.footer-links a:hover, .footer-grid > div:last-child > a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .10); font-size: .82rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .hero-home__grid, .split-copy, .contact-layout, .about-grid { grid-template-columns: 1fr; }
  .hero-home__grid { gap: 44px; }
  .product-preview-grid, .service-grid, .article-grid, .service-grid--five { grid-template-columns: 1fr; }
  .product-category-grid { grid-template-columns: 1fr; }
  .service-grid--five .service-card,
  .service-grid--five .service-card:nth-child(4),
  .service-grid--five .service-card:nth-child(5) { grid-column: auto; }
  .mini-card--featured { transform: none; }
}

@media (max-width: 680px) {
  .container, .nav-wrap { width: min(100% - 28px, var(--max)); }
  .hero-home { padding: 62px 0 68px; }
  .hero-home h1 { font-size: clamp(2.55rem, 15vw, 4rem); }
  .tap-panel { padding: 32px 26px; }
  .section { padding: 62px 0; }
  .card-grid { grid-template-columns: 1fr; }
  .scenario { grid-template-columns: 1fr; padding: 26px; }
  .hero-actions .btn { width: 100%; }
  .cta-center .btn, .about-actions .btn { width: 100%; }
  .instagram-callout { align-items: stretch; padding: 24px; flex-direction: column; }
  .instagram-callout .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
