:root {
  --navy: #000080;
  --cobalt: #0047AB;
  --magenta: #C90076;
  --lavender: #DAACEC;
  --yellow: #FFD800;
  --ink: #071146;
  --paper: #fffdfa;
  --line: rgba(0,0,128,.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html {
  background: #fffdfa;
}

body {
  margin: 0;
  color: var(--ink);
  background-color: #fffdfa;
  background-image:
    radial-gradient(circle at 88% 8%, rgba(218, 172, 236, 0.34) 0, rgba(218, 172, 236, 0) 28rem),
    radial-gradient(circle at 8% 45%, rgba(255, 216, 0, 0.12) 0, rgba(255, 216, 0, 0) 24rem);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  padding: 28px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
}

.brand-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: block;
}

.brand-name {
  display: grid;
  line-height: .86;
}

.brand-pokit {
  color: var(--navy);
  font: 900 29px/1 "Arial Narrow","Helvetica Neue Condensed Bold",Impact,sans-serif;
  letter-spacing: .08em;
}

.brand-wear {
  margin-top: 7px;
  color: var(--cobalt);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .44em;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 70px;
  align-items: center;
  padding: 50px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .2em;
}

.hero h1,
.section-heading h2,
.custom h2 {
  margin: 0;
  color: var(--navy);
  font-family: "Arial Narrow","Helvetica Neue Condensed Bold",Impact,sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(58px,8vw,104px);
  line-height: .88;
}

.accent-word {
  display: inline-block;
  color: var(--cobalt);
  position: relative;
  margin-left: .08em;
}

.accent-word::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 0;
  bottom: -9px;
  height: 7px;
  border-radius: 999px;
  background: var(--magenta);
  transform: rotate(-1deg);
}

.tagline {
  margin: 40px 0 14px;
  color: var(--navy);
  font: 500 clamp(22px,3vw,31px)/1.25 Georgia,"Times New Roman",serif;
}

.intro {
  max-width: 700px;
  margin: 0;
  color: #37406d;
  font-size: 18px;
  line-height: 1.65;
}

.launch-badge {
  margin-top: 34px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 35px rgba(0,0,128,.08);
}

.launch-badge strong {
  color: var(--navy);
  letter-spacing: .13em;
}

.launch-badge > span:last-child {
  color: #6a7194;
  border-left: 1px solid var(--line);
  padding-left: 13px;
}

.spark-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
}

.spark-magenta,
.spark-yellow {
  grid-area: 1/1;
  line-height: 1;
}

.spark-magenta {
  color: var(--magenta);
  font-size: 28px;
  transform: rotate(12deg);
}

.spark-yellow {
  color: var(--yellow);
  font-size: 10px;
  transform: rotate(45deg);
}

.hero-art {
  display: grid;
  place-items: center;
}

.icon-frame {
  width: min(370px,85vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 30px 70px rgba(0,0,128,.22);
  transform: rotate(1.5deg);
  background: var(--navy);
}

.icon-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.collections {
  padding: 88px 0 66px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.custom h2 {
  font-size: clamp(40px,5vw,66px);
  line-height: .98;
}

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

.collection-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 16px 45px rgba(0,0,128,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(0,0,128,.09);
}

.number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 80px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
}

.collection-card:nth-child(2) .number {
  color: white;
  background: var(--magenta);
}

.collection-card:nth-child(3) .number {
  background: var(--lavender);
}

.collection-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 25px;
}

.collection-card p {
  margin: 0;
  color: #505779;
  line-height: 1.6;
}

.promise {
  display: grid;
  grid-template-columns: 1fr minmax(250px,720px) 1fr;
  gap: 28px;
  align-items: center;
  padding: 92px 0;
}

.promise-line {
  height: 2px;
  background: var(--magenta);
}

.promise blockquote {
  margin: 0;
  text-align: center;
  color: var(--navy);
  font: 500 clamp(26px,4vw,43px)/1.28 Georgia,"Times New Roman",serif;
}

.custom {
  margin-bottom: 90px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  border-radius: 28px;
  background:
    linear-gradient(115deg,
      rgba(218, 172, 236, 0.42),
      rgba(255, 216, 0, 0.18));
}

.custom p:last-child {
  margin: 0;
  color: #3f476d;
  font-size: 18px;
  line-height: 1.65;
}

footer {
  padding: 35px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

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

.footer-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.footer-brand {
  color: var(--navy);
  font: 900 24px/1 "Arial Narrow","Helvetica Neue Condensed Bold",Impact,sans-serif;
  letter-spacing: .09em;
}

.footer-copy {
  display: flex;
  gap: 22px;
  color: #707797;
  font-size: 13px;
}


.site-nav a,
.footer-copy a {
  color: var(--navy);
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201,0,118,.35);
  box-shadow: 0 10px 28px rgba(0,0,128,.08);
}

.text-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cobalt);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--magenta);
}

.contact {
  margin: 0 0 90px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 16%, rgba(218,172,236,.36), rgba(218,172,236,0) 24rem),
    #fff;
  box-shadow: 0 20px 60px rgba(0,0,128,.07);
}

.contact h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: "Arial Narrow","Helvetica Neue Condensed Bold",Impact,sans-serif;
  font-size: clamp(42px,5vw,68px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.contact-heading > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #485174;
  font-size: 18px;
  line-height: 1.65;
}

.contact-card {
  padding: 34px;
  border-radius: 22px;
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(0,0,128,.18);
}

.contact-label {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.contact-email {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #fff;
  font: 500 clamp(23px,3vw,36px)/1.2 Georgia,"Times New Roman",serif;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: var(--lavender);
}

.contact-button {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--yellow);
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,216,0,.22);
}

.contact-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
}

.footer-copy a {
  color: #707797;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: var(--magenta);
}

@media (max-width:820px) {
  .page-shell { width: min(100% - 28px,720px); }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 40px;
  }

  .hero-copy { order: 1; }
  .hero-art { order: 2; }

  .card-grid,
  .custom,
  .contact { grid-template-columns: 1fr; }

  .collection-card { min-height: auto; }
  .number { margin-bottom: 45px; }
  .custom,
  .contact { padding: 34px 26px; }
}

@media (max-width:560px) {
  .site-header {
    padding-top: 22px;
    align-items: flex-start;
  }

  .site-nav a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .brand-icon { width: 46px; height: 46px; }
  .brand-pokit { font-size: 24px; }

  .hero h1 { font-size: clamp(52px,17vw,76px); }

  .launch-badge {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .launch-badge > span:last-child {
    width: 100%;
    border-left: 0;
    padding-left: 39px;
  }

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

  .promise-line {
    width: 80px;
    margin: 0 auto;
  }

  footer,
  .footer-copy {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Explicit light presentation for Pokit Wear branding */
input, button, select, textarea {
  color-scheme: light;
}
