:root {
  --ink: #17122e;
  --ink-2: #2f2754;
  --muted: #746b88;
  --line: rgba(55, 45, 97, 0.13);
  --paper: #ffffff;
  --paper-soft: #f8f7ff;
  --paper-warm: #fff8eb;
  --very-peri: #6667ab;
  --very-peri-dark: #45418c;
  --very-peri-light: #9ea0e5;
  --gold: #d8a63a;
  --gold-spark: #ffc546;
  --gold-dark: #a87922;
  --gold-light: #f7d77a;
  --gold-soft: #fff3d1;
  --orange: #e7b756;
  --wine: #241646;
  --violet: #7f72d8;
  --deep-violet: #2a2361;
  --gold-muted: #c59a43;
  --lavender: #a98ee8;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(23, 18, 46, 0.16);
  --shadow-soft: 0 14px 45px rgba(23, 18, 46, 0.10);
  --wrap: min(1160px, calc(100% - 40px));
}

* {
  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;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img, svg {
  max-width: 100%;
}

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

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--very-peri);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(55, 45, 97, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--very-peri) 58%, var(--violet));
  box-shadow: 0 12px 30px rgba(102, 103, 171, 0.28);
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
}

.brand-text {
  font-size: 1.04rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #50476f;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a,
.nav-dropdown-toggle,
.footer-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.footer-links a:hover {
  color: var(--very-peri);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(55, 45, 97, 0.10);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 14px;
  border-radius: 14px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--very-peri);
  background: rgba(102, 103, 171, 0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(102, 103, 171, 0.24);
  border-radius: 999px;
  color: #5b55a6;
  background: rgba(102, 103, 171, 0.08);
  font-weight: 800;
}

.section {
  padding: 108px 0;
}

.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 18% 16%, rgba(216, 166, 58, 0.22), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(127, 114, 216, 0.30), transparent 26%),
    linear-gradient(135deg, #17122e 0%, #241646 48%, #33286f 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 86px;
  background:
    linear-gradient(118deg, rgba(15, 10, 35, 0.90) 12%, rgba(27, 18, 58, 0.74) 50%, rgba(20, 12, 46, 0.84) 100%),
    radial-gradient(circle at 18% 16%, rgba(216, 166, 58, 0.18), transparent 28%),
    radial-gradient(circle at 76% 18%, rgba(127, 114, 216, 0.24), transparent 26%),
    url("images/hero-sparking-ecosystem.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -34% -12%;
  height: 320px;
  background: radial-gradient(closest-side, rgba(216, 166, 58, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.product-topline,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: #f4dc97;
  margin-bottom: 22px;
}

.eyebrow span,
.product-topline span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(216, 166, 58, 0.16);
}

.hero h1,
.section h2,
.product-card h3,
.saas-card h3,
.career-cards h3 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.3vw, 5.75rem);
}

.lead {
  max-width: 760px;
  margin-top: 26px;
  color: #f6eddc;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--gold-spark), var(--very-peri) 54%, var(--violet));
  box-shadow: 0 16px 36px rgba(102, 103, 171, 0.28);
}

.button.secondary {
  color: #f8f4ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--ink);
  border-color: rgba(23, 18, 46, 0.12);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin: 48px 0 0;
}

.hero-stats div {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-stats dt {
  margin: 0;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: #d8d1f0;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
}

.orb-one {
  width: 220px;
  height: 220px;
  top: 34px;
  right: 8px;
  background: radial-gradient(circle, rgba(216, 166, 58, 0.50), transparent 72%);
}

.orb-two {
  width: 260px;
  height: 260px;
  bottom: 20px;
  left: 10px;
  background: radial-gradient(circle, rgba(127, 114, 216, 0.48), transparent 72%);
}

.phone-mockup {
  position: absolute;
  inset: 48px 76px auto auto;
  width: min(340px, 74vw);
  height: 630px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 48px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(20px);
}

.phone-top {
  width: 96px;
  height: 8px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.map-card {
  position: relative;
  height: calc(100% - 26px);
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(150deg, #463a84, #251947 54%, #5c4320);
  background-size: 42px 42px;
}

.map-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 3px;
  width: 238px;
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(20px);
}

.floating-card strong {
  font-size: 1.02rem;
}

.floating-card span {
  color: #dfd9f6;
  font-size: 0.9rem;
}

.card-dashboard {
  top: 138px;
  right: 0;
}

.card-market {
  right: 8px;
  bottom: 62px;
}

.card-tipark {
  top: 84px;
  left: 12px;
}

.card-influger {
  left: 0;
  bottom: 170px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.trust-grid div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 26px 32px;
  border-left: 1px solid var(--line);
}

.trust-grid div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.section-kicker {
  color: var(--very-peri);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.35rem);
}

.copy-stack {
  display: grid;
  gap: 18px;
  color: #5c536f;
  font-size: 1.05rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 64px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, #fbfaff);
  box-shadow: var(--shadow-soft);
}

.pillar-card::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -70px;
  bottom: -78px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(102, 103, 171, 0.12), rgba(216, 166, 58, 0.12));
}

.pillar-number {
  display: inline-flex;
  margin-bottom: 62px;
  color: rgba(23, 18, 46, 0.24);
  font-size: 0.95rem;
  font-weight: 900;
}

.pillar-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.pillar-card p {
  position: relative;
  z-index: 1;
  color: #635b78;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 54px;
}

.section-heading.center {
  text-align: center;
}

.section-heading p:last-child {
  max-width: 760px;
  margin: 18px auto 0;
  color: #635b78;
  font-size: 1.06rem;
}

.section-parking {
  background:
    radial-gradient(circle at 8% 20%, rgba(216, 166, 58, 0.13), transparent 28%),
    radial-gradient(circle at 92% 42%, rgba(127, 114, 216, 0.14), transparent 26%),
    var(--paper-soft);
}

.product-showcase {
  display: grid;
  gap: 30px;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 32px;
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-card[id],
.saas-card[id] {
  scroll-margin-top: 108px;
}

.product-card.reverse {
  grid-template-columns: 0.78fr 1fr;
}

.product-card.reverse .product-content {
  order: 2;
}

.product-card.reverse .product-visual {
  order: 1;
}

.product-content {
  padding: clamp(34px, 5vw, 58px);
}

.product-topline {
  margin-bottom: 18px;
  color: #746b88;
}

.product-tipark .product-topline span {
  background: linear-gradient(135deg, var(--gold), var(--very-peri) 58%, var(--violet));
}

.product-parkomarket .product-topline span {
  background: linear-gradient(135deg, var(--wine), var(--orange));
}

.product-card h3 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.tipark-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tipark-heading-icon {
  display: block;
  height: clamp(54px, 7vw, 78px);
  width: auto;
  border-radius: 18px;
}

.tipark-wordmark {
  font-family: "Comfortaa", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 0.01px currentColor;
  -webkit-text-stroke: 0.35px currentColor;
}

.parkomarket-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.parkomarket-heading-icon {
  display: block;
  height: clamp(50px, 6.5vw, 72px);
  width: auto;
}

.parkomarket-wordmark {
  font-family: "Rajdhani", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: navy;
}

.product-lead {
  margin-top: 18px;
  color: #2a2143;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-content > p:not(.product-lead) {
  margin-top: 18px;
  color: #635b78;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.product-actions {
  margin-top: 28px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #5c536f;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--very-peri);
  box-shadow: 0 0 0 5px rgba(102, 103, 171, 0.10);
}

.compact {
  gap: 9px;
}

.product-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-membership {
  background: #fff;
}

.membership-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: start;
  padding: clamp(34px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(127,114,216,0.10), transparent 36%),
    linear-gradient(315deg, rgba(216,166,58,0.12), transparent 32%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.membership-intro {
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: clamp(28px, 4vw, 38px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 14, 28, 0.16) 0%, rgba(17, 24, 45, 0.76) 62%, rgba(23, 18, 46, 0.90) 100%),
    url("images/parking-industry-network.webp") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.membership-intro .section-kicker {
  color: #efe7ff;
}

.membership-intro h2 {
  color: #fff;
}

.membership-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}

.membership-logo {
  display: block;
  width: 116px;
  height: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(23, 18, 46, 0.08);
}

.section-program {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(23, 18, 46, 0.90) 10%, rgba(36, 22, 70, 0.78) 52%, rgba(51, 40, 111, 0.86) 100%),
    radial-gradient(circle at 16% 20%, rgba(216,166,58,0.18), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(127,114,216,0.24), transparent 30%),
    url("images/parkujmy-razem-aaos-car.webp") center / cover no-repeat;
}

.section-program .section-kicker,
.section-program p {
  color: #efe7ff;
}

.program-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.program-grid h2 {
  max-width: 780px;
}

.program-grid p {
  max-width: 720px;
  margin: 22px 0 32px;
  font-size: 1.06rem;
}

.program-points {
  display: grid;
  gap: 16px;
}

.program-points article {
  display: grid;
  gap: 6px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
}

.program-points strong {
  font-size: 1.18rem;
}

.program-points span {
  color: #ddd4f0;
}

.section-saas {
  background: var(--paper-soft);
}

.saas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.saas-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.saas-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.saas-visual-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.saas-visual::before,
.saas-visual::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
}

.saas-visual::before {
  width: 68%;
  height: 46%;
  left: 24px;
  top: 38px;
}

.saas-visual::after {
  width: 44%;
  height: 30%;
  right: 24px;
  bottom: 28px;
}

.influger-pro .saas-visual {
  background: radial-gradient(circle at 78% 18%, rgba(127,114,216,0.78), transparent 34%), linear-gradient(135deg, var(--deep-violet), #2a164b);
}

.influger-micro .saas-visual {
  background: radial-gradient(circle at 82% 18%, rgba(169,142,232,0.76), transparent 34%), linear-gradient(135deg, #d8a63a, var(--gold-muted));
}

.publikomat .saas-visual {
  background: radial-gradient(circle at 82% 20%, rgba(127,114,216,0.35), transparent 32%), linear-gradient(135deg, #f8f4ff, #fbfaff 48%, #f6eddc);
}

.publikomat .saas-visual::before,
.publikomat .saas-visual::after {
  background: rgba(55, 45, 97, 0.10);
}

.saas-content {
  padding: 30px;
}

.tag {
  color: #746b88;
  font-size: 0.72rem;
}

.saas-card h3 {
  margin-top: 12px;
  font-size: 2rem;
}

.saas-card p {
  margin-top: 16px;
  color: #635b78;
}

.section-careers {
  background: #fff;
}

.careers-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.careers-copy p:not(.section-kicker) {
  margin-top: 22px;
  color: #635b78;
  font-size: 1.06rem;
}

.career-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 32px;
  background:
    linear-gradient(140deg, rgba(23, 18, 46, 0.20), rgba(255, 255, 255, 0.08)),
    url("images/sparking-product-team.webp") center / cover no-repeat;
  box-shadow: var(--shadow-soft);
}

.career-cards article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #fbfaff);
}

.career-cards article:first-child {
  grid-column: span 2;
  min-height: 180px;
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 231, 0.86));
  backdrop-filter: blur(1px);
}

.career-cards article:not(:first-child) {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(251, 250, 255, 0.64));
  backdrop-filter: blur(1px);
}

.career-cards h3 {
  font-size: 1.4rem;
}

.career-cards p {
  margin-top: 12px;
  color: #635b78;
}

.section-contact {
  padding-top: 0;
  background: #fff;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: start;
  padding: clamp(34px, 6vw, 64px);
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(216,166,58,0.26), transparent 30%),
    radial-gradient(circle at 88% 78%, rgba(127,114,216,0.34), transparent 30%),
    linear-gradient(135deg, #17122e, #241646 62%, #33286f);
  box-shadow: var(--shadow);
}

.contact-card .section-kicker,
.contact-copy p,
.contact-meta,
.contact-status {
  color: #efe7ff;
}

.contact-card h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
}

.contact-copy p {
  max-width: 760px;
  margin-top: 18px;
}

.contact-copy {
  display: grid;
  align-content: start;
}

.contact-form-panel {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-xl) - 10px);
  background: linear-gradient(160deg, rgba(11, 8, 27, 0.34), rgba(47, 31, 94, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-label {
  color: #f8f4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: #fff;
  background: rgba(10, 7, 25, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(239, 231, 255, 0.56);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: rgba(214, 179, 94, 0.9);
  box-shadow: 0 0 0 4px rgba(214, 179, 94, 0.12);
  background: rgba(14, 10, 35, 0.44);
}

.contact-textarea {
  min-height: 168px;
  resize: vertical;
}

.contact-form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-submit {
  min-width: 210px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.84;
}

.contact-meta {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: #d7cff0;
  font-size: 0.92rem;
}

.contact-status {
  min-height: 1.5em;
  margin: 0;
  font-size: 0.94rem;
}

.contact-status.is-success {
  color: #bfffd8;
}

.contact-status.is-error {
  color: #ffb7bf;
}

.contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 8px;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #5c536f;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .membership-card,
  .program-grid,
  .careers-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 540px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-field-full {
    grid-column: auto;
  }

  .phone-mockup {
    right: 50%;
    transform: translateX(50%);
  }

  .product-card,
  .product-card.reverse {
    grid-template-columns: 1fr;
  }

  .product-card.reverse .product-content,
  .product-card.reverse .product-visual {
    order: initial;
  }

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

  .saas-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
  }

  .saas-visual {
    height: auto;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 82px 0 64px;
  }

  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-stats,
  .trust-grid,
  .pillars,
  .career-cards,
  .saas-card {
    grid-template-columns: 1fr;
  }

  .career-cards article:first-child {
    grid-column: auto;
  }

  .trust-grid div,
  .trust-grid div:last-child {
    border-right: 1px solid var(--line);
  }

  .hero-visual {
    min-height: 470px;
    margin-top: 20px;
  }

  .phone-mockup {
    width: 270px;
    height: 440px;
    border-radius: 40px;
  }

  .floating-card {
    width: 205px;
    padding: 14px;
  }

  .card-dashboard { right: 0; top: 118px; }
  .card-influger { left: 0; bottom: 132px; }
  .card-market { right: 0; bottom: 18px; }
  .card-tipark { left: 0; top: 24px; }

  .product-content,
  .saas-content,
  .pillar-card,
  .career-cards article {
    padding: 26px;
  }

  .product-visual {
    min-height: 390px;
  }

  .footer-grid {
    display: grid;
  }
}

@media (max-width: 480px) {
  .button {
    width: 100%;
  }

  .hero-actions,
  .contact-form-footer {
    width: 100%;
  }

  .contact-form-footer {
    align-items: stretch;
  }

  .phone-mockup {
    width: 240px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 10px;
  }

  .hero-visual {
    display: grid;
    align-items: end;
    min-height: auto;
    gap: 10px;
    padding-top: 20px;
  }

  .phone-mockup {
    position: relative;
    inset: auto;
    transform: none;
    margin-inline: auto;
  }
}

/* Palette refinement: gold + Very Peri */
.product-card:nth-child(even) .feature-list li::before,
.saas-card:nth-child(even) .feature-list li::before {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 166, 58, 0.12);
}
