:root {
  color-scheme: light;
  --ink: #101114;
  --muted: #686b82;
  --soft: #484b5e;
  --paper: #f7f8fc;
  --surface: #ffffff;
  --surface-alt: #f1f3f9;
  --panel: #ffffff;
  --panel-strong: #ffffff;
  --line: #dedee5;
  --line-soft: rgba(104, 107, 130, 0.18);
  --purple: #7132f5;
  --purple-dark: #5741d8;
  --purple-deep: #5b1ecf;
  --purple-soft: rgba(133, 91, 251, 0.16);
  --gold: #f5c95f;
  --green: #149e61;
  --green-dark: #026b3f;
  --danger: #d95f4f;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
  --shadow-strong: 0 22px 58px rgba(16, 17, 20, 0.12);
  font-family: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 48%, #ffffff 100%);
}

a {
  color: var(--purple-dark);
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid rgba(222, 222, 229, 0.82);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(87, 65, 216, 0.16);
}

.brand span {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.38;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(113, 50, 245, 0.34);
}

.nav a[aria-current="page"],
.button.primary {
  border-color: var(--purple-dark);
  background: var(--purple);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 78vh, 820px);
  margin-top: -70px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/pip-enters-tower.webp") center 38% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.28) 0%, rgba(16, 17, 20, 0.18) 34%, rgba(16, 17, 20, 0.78) 100%),
    linear-gradient(90deg, rgba(16, 17, 20, 0.66) 0%, rgba(16, 17, 20, 0.24) 48%, rgba(16, 17, 20, 0.08) 100%);
}

.hero-inner,
.content {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: 178px 0 70px;
}

.hero-copy-panel {
  min-width: 0;
}

.intro-device {
  justify-self: end;
  width: clamp(230px, 26vw, 318px);
  margin: 0;
  filter: drop-shadow(0 28px 58px rgba(10, 9, 18, 0.42));
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 44px;
  background:
    linear-gradient(145deg, #22242b 0%, #07080d 58%, #333640 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 0 0 7px #0f1015,
    var(--shadow-strong);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 25px;
  border-radius: 9999px;
  background: #050507;
  transform: translateX(-50%);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 48px 58px rgba(255, 255, 255, 0.08);
}

.intro-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #0b0c10;
  object-fit: cover;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 10px;
  border-radius: 6px;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.43;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-header .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff2bf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.42);
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
}

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

.hero .button:not(.primary),
.page-header .button:not(.primary) {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 72px 0;
  background: var(--surface);
}

.section.alt {
  background: var(--surface-alt);
}

.section h2 {
  max-width: 780px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.lead {
  max-width: 760px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.62;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.62;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.data-table th,
.data-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.data-table th {
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.data-table td {
  color: var(--muted);
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.page-header {
  position: relative;
  margin-top: -70px;
  padding: 176px 0 76px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.22), rgba(16, 17, 20, 0.78)),
    linear-gradient(90deg, rgba(16, 17, 20, 0.68), rgba(16, 17, 20, 0.14)),
    url("assets/pip-enters-tower.webp") center 34% / cover no-repeat;
}

.page-header h1 {
  max-width: 820px;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(113, 50, 245, 0.24);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-box strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 18px;
}

.footer {
  padding: 30px 0 42px;
  border-top: 1px solid var(--line-soft);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.footer a {
  color: var(--purple-dark);
  text-decoration: none;
}

@media (max-width: 760px) {
  .topbar {
    top: 8px;
    align-items: flex-start;
    padding: 10px;
  }

  .brand span {
    white-space: normal;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 170px;
    padding-bottom: 56px;
  }

  .intro-device {
    justify-self: center;
    width: min(72vw, 286px);
  }

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

  .data-table,
  .data-table thead,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table thead {
    display: none;
  }

  .data-table td {
    border-bottom: 0;
  }

  .data-table tr {
    border-bottom: 1px solid var(--line);
  }

  .data-table tr:last-child {
    border-bottom: 0;
  }

  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--purple-deep);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
  }

  .contact-box,
  .footer-inner {
    display: block;
  }

  .contact-box .button {
    width: 100%;
    margin-top: 14px;
  }

  .footer-inner span:last-child {
    display: block;
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav a,
  .button {
    transition: none;
  }

  .nav a:hover,
  .button:hover {
    transform: none;
  }
}
