:root {
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --accent: #f59e0b;
  --ink: #0f172a;
  --ink-soft: #64748b;
  --bg: #ffffff;
  --rule: #e2e8f0;
  --radius: 14px;
  --max: 1180px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 64px);
  max-width: var(--max);
  margin: 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-lockup {
  --logo-tile-size: 54px;
  --logo-gap: 14px;
  --logo-word-size: 28px;
  display: inline-flex;
  align-items: center;
  gap: var(--logo-gap);
}

.logo-tile {
  display: inline-flex;
  width: var(--logo-tile-size);
  height: var(--logo-tile-size);
  padding: max(3px, calc(var(--logo-tile-size) * 0.055));
  border-radius: calc(var(--logo-tile-size) * 0.22);
  background: #1e1b4b;
  flex: 0 0 auto;
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--logo-tile-size) * 0.17);
  background: #fff;
}

.logo-word {
  color: var(--ink);
  font-size: var(--logo-word-size);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-word span {
  color: var(--brand);
}

.logo-lockup--nav {
  --logo-tile-size: clamp(36px, 4vw, 44px);
  --logo-gap: 12px;
  --logo-word-size: clamp(24px, 2.4vw, 28px);
}

.logo-lockup--hero {
  --logo-tile-size: clamp(96px, 11vw, 142px);
  --logo-gap: clamp(22px, 3vw, 36px);
  --logo-word-size: clamp(58px, 7.5vw, 88px);
}

.site-header nav ul {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.site-header nav a {
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  transition: color 0.15s ease;
}

.site-header nav a:hover {
  color: var(--brand);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(8px, 2vw, 24px) clamp(20px, 5vw, 64px) clamp(48px, 8vw, 120px);
}

.hero-brand {
  margin: 0 0 18px;
  line-height: 1;
  max-width: 100%;
  overflow: visible;
}

.wordmark {
  font-weight: 700;
  font-size: clamp(64px, 12vw, 156px);
  color: var(--brand);
  margin: 0 0 24px;
  line-height: 1;
}

.tagline {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--ink);
  margin: 0 0 clamp(20px, 2.6vw, 32px);
  line-height: 1.35;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 5vw, 56px);
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-columns {
    grid-template-columns: minmax(0, 3fr) minmax(210px, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
  }
}

.step {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 22px;
  text-align: left;
}

.step h2 {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

.step .numeral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: #fff;
  font-weight: 700;
  font-size: 44px;
  color: var(--ink);
  margin-left: 12px;
}

.step ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  font-weight: 500;
}

.step ul li {
  position: relative;
  padding-left: 22px;
  line-height: 1.45;
}

.step ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--ink-soft);
  border-radius: 50%;
}

.cta-arrow {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  background: #eef1f3;
  padding: 22px 56px 22px 32px;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 50%, calc(100% - 36px) 100%, 0 100%, 12px 50%);
  transition: background 0.15s ease, color 0.15s ease;
  margin-top: 16px;
}

.cta-arrow--hero {
  margin-top: 0;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.cta-arrow:hover,
.cta-arrow:focus-visible {
  background: var(--brand);
  color: #fff;
  outline: none;
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .site-header nav ul {
    flex-wrap: wrap;
    gap: 14px 24px;
  }

  .site-header nav a {
    font-size: 17px;
  }

  .logo-lockup--hero {
    --logo-tile-size: clamp(70px, 22vw, 90px);
    --logo-gap: 16px;
    --logo-word-size: clamp(42px, 12vw, 56px);
  }
}

.pickle-card {
  display: grid;
  gap: 20px;
  align-content: start;
  justify-items: center;
  order: -1;
  padding-top: 2px;
}

.pickle-copy h2 {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: var(--ink);
  margin: 0 0 22px;
  line-height: 1.05;
  text-align: left;
}

.pickle-punch {
  margin-top: 0 !important;
}

.pickle-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pickle-art-link {
  cursor: pointer;
  transition: transform 0.18s ease;
}

.pickle-art-link:hover,
.pickle-art-link:focus-visible {
  transform: rotate(-4deg) scale(1.04);
  outline: none;
}

.pickle-art svg {
  width: 100%;
  max-width: 190px;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .pickle-card {
    order: initial;
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
    justify-items: start;
    border-top: 1px solid var(--rule);
    padding-top: 32px;
  }

  .pickle-art svg {
    max-width: 220px;
  }
}

@media (min-width: 1024px) {
  .pickle-card {
    order: initial;
  }

  .steps {
    gap: clamp(28px, 3vw, 48px);
  }

  .pickle-copy h2 {
    font-size: clamp(24px, 2.15vw, 34px);
  }
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 64px) 48px;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}
