/* ============================================================
   AUGEN PRO — Apple-quality design system v5
   Base: 1rem = 10px  |  Breakpoints: 734px (sm), 1069px (lg)
   Typography, rhythm and spacing tuned to apple.com
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colours — lifted from apple.com */
  --ap-black:        #000000;
  --ap-off-black:    #1d1d1f;   /* Apple primary text */
  --ap-grey-dark:    #3d3d3f;
  --ap-grey-mid:     #6e6e73;   /* Apple secondary text */
  --ap-grey-light:   #f5f5f7;   /* Apple light section bg */
  --ap-grey-lighter: #fbfbfd;
  --ap-off-white:    #f5f5f7;
  --ap-white:        #ffffff;
  --ap-near-white:   #fbfbfd;   /* Apple page bg */
  --ap-blue:         #0071e3;   /* Apple blue */
  --ap-green:        #00b982;
  --ap-orange:       #ff5102;
  --ap-yellow:       #fca311;

  /* Typography */
  --ap-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Layout */
  --ap-max:    980px;
  --ap-outer:  22px;
  --ap-gutter: 20px;
  --ap-nav-y:  1.8rem;
}

@media (min-width: 734px) {
  :root {
    --ap-outer:  30px;
    --ap-gutter: 24px;
    --ap-nav-y:  2.2rem;
  }
}

@media (min-width: 1069px) {
  :root {
    --ap-outer:  0px;
    --ap-gutter: 24px;
    --ap-nav-y:  2.2rem;
  }
}


/* ── GLOBAL RESET (scoped to .augen-body) ── */
.augen-body {
  font-family: var(--ap-font);
  font-size: 10px;          /* 1rem = 10px throughout */
  font-weight: 400;
  background: var(--ap-near-white);
  color: var(--ap-off-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  scrollbar-width: none;
}
.augen-body::-webkit-scrollbar { display: none; }
.augen-body *, .augen-body *::before, .augen-body *::after { box-sizing: border-box; }
.augen-body a { text-decoration: none; color: inherit; }
.augen-body ul { list-style: none; margin: 0; padding: 0; }
.augen-body img { display: block; max-width: 100%; height: auto; }
.augen-body h1, .augen-body h2, .augen-body h3,
.augen-body h4, .augen-body h5, .augen-body p {
  margin: 0; font-size: inherit; font-weight: inherit;
}
.augen-body button {
  border: none; background: none; cursor: pointer;
  padding: 0; font-family: inherit;
}

/* ── SMOOTH SCROLL (early, so it's always applied) ── */
html { scroll-behavior: smooth; }

/* ── HIDE BLOCKSY CHROME ── */
.augen-body .site-header,
.augen-body .site-footer,
.augen-body .ct-header,
.augen-body .ct-footer,
.augen-body .entry-header,
.augen-body .ct-main-container,
.augen-body #wpadminbar { display: none !important; }
.augen-body .augen-main,
.augen-body .augen-footer { display: block !important; }


/* ── CONTAINER — 980px centred, Apple-style ── */
.augen-container {
  width: 100%;
  max-width: calc(var(--ap-max) + 60px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}
@media (min-width: 734px) {
  .augen-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1069px) {
  .augen-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ── SECTION BACKGROUNDS ── */
.augen-section--grey-light   { background-color: var(--ap-grey-light);   color: var(--ap-off-black); }
.augen-section--grey-lighter { background-color: var(--ap-grey-lighter); color: var(--ap-off-black); }
.augen-section--off-white    { background-color: var(--ap-off-white);    color: var(--ap-off-black); }
.augen-section--black        { background-color: var(--ap-black);        color: #f5f5f7; }

/* ── UTILITY ── */
.augen-dim       { opacity: 0.5; }
.augen-dim-white { opacity: 0.45; color: #f5f5f7; }
.augen-footnote  {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ap-grey-mid);
  margin-top: 2rem;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

/* ── EYEBROW LABEL ── */
.augen-label {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.47;
  color: var(--ap-off-black);
}


/* ============================================================
   LOGO BUTTON — small circle, fixed top-left
   ============================================================ */
.augen-logo-btn {
  position: fixed;
  top: var(--ap-nav-y);
  left: 22px;
  z-index: 500;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(29,29,31,0.1);
  color: var(--ap-off-black);
  transition: background 0.2s;
}
@media (min-width: 734px) {
  .augen-logo-btn {
    left: 30px;
    width: 4.2rem;
    height: 4.2rem;
  }
}
.augen-logo-btn:hover { background: rgba(255,255,255,0.9); }
.augen-logo-btn svg { width: 16px; height: 16px; }


/* ============================================================
   NAV PILL — fixed, horizontally centred, desktop only
   ============================================================ */
.augen-nav-pill {
  position: fixed;
  top: var(--ap-nav-y);
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: none;
}
@media (min-width: 734px) {
  .augen-nav-pill { display: block; }
}

.augen-nav-pill__list {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(29,29,31,0.1);
  border-radius: 99px;
  height: 4.2rem;
  /* equal left padding and right padding — the Shop pill sits inside that padding */
  padding: 0 0.5rem 0 2.4rem;
  transition: background 0.25s;
  white-space: nowrap;
}
.augen-nav-pill.is-scrolled .augen-nav-pill__list {
  background: rgba(255,255,255,0.92);
}

/* Equal gap between every regular item */
.augen-nav-pill__list li + li {
  margin-left: 2.8rem;
}
/* No extra margin before the Shop pill — its own padding handles the gap */
.augen-nav-pill__list li:has(.augen-nav-pill__link--shop) {
  margin-left: 2.4rem;
}

.augen-nav-pill__link {
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: var(--ap-off-black);
  white-space: nowrap;
  transition: opacity 0.2s;
  opacity: 0.85;
}
.augen-nav-pill__link:hover { opacity: 1; }
/* Dim siblings when one is hovered */
.augen-nav-pill__list:has(li:hover) li:not(:hover) .augen-nav-pill__link { opacity: 0.35; }


/* ============================================================
   BURGER — mobile only, fixed top-right
   ============================================================ */
.augen-burger {
  position: fixed;
  top: var(--ap-nav-y);
  right: 22px;
  z-index: 500;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 0.5px solid rgba(29,29,31,0.1);
}
@media (min-width: 734px) { .augen-burger { display: none; } }
.augen-burger span {
  display: block;
  width: 1.35rem;
  height: 1.5px;
  background: var(--ap-off-black);
  border-radius: 1px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              opacity 0.2s;
}
.augen-burger.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.augen-burger.is-open span:last-child  { transform: translateY(-3px) rotate(-45deg); }


/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.augen-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(251,251,253,0.97);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  display: none;
  flex-direction: column;
  padding: 8rem 22px 4rem;
  overflow-y: auto;
}
.augen-mobile-nav.is-open { display: flex; }
.augen-mobile-nav__title {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ap-grey-mid);
  border-bottom: 0.5px solid rgba(29,29,31,0.12);
  padding-bottom: 1.4rem;
  margin-bottom: 0;
}
.augen-mobile-nav__list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.augen-mobile-nav__list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 0.5px solid rgba(29,29,31,0.07);
  padding: 1.8rem 0;
}
.augen-mobile-nav__list a {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ap-off-black);
}
.augen-mobile-nav__num {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ap-grey-mid);
  width: 2.4rem;
  flex-shrink: 0;
}


/* ============================================================
   PILL COMPONENT
   ============================================================ */
.augen-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 99px;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 0.7rem 1.4rem 0.75rem;
  white-space: nowrap;
  cursor: default;
}
/* Dark outline pill */
.augen-pill--outline {
  border: 0.7px solid rgba(29,29,31,0.18);
  color: var(--ap-off-black);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: background 0.2s;
}
.augen-pill--outline:hover { background: rgba(255,255,255,0.85); }
.augen-pill--outline sup {
  font-size: 0.65em;
  vertical-align: super;
}
/* White outline pill */
.augen-pill--white-outline {
  border: 0.7px solid rgba(255,255,255,0.22);
  color: rgba(245,245,247,0.72);
  background: rgba(255,255,255,0.06);
}
.augen-pill__arrow { display: flex; align-items: center; }


/* ============================================================
   ARROW LINK COMPONENT
   ============================================================ */
.augen-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1;
  transition: opacity 0.18s;
}
.augen-arrow-link:hover { opacity: 0.6; }
.augen-arrow-link--blue  { color: var(--ap-blue); }
.augen-arrow-link--white { color: rgba(245,245,247,0.88); }
.augen-arrow-link--dark  { color: var(--ap-off-black); }
.augen-arrow-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 1.7rem;
  border: 0.8px solid currentColor;
  border-radius: 99px;
  flex-shrink: 0;
}

/* Bracket text  e.g. [Pha¹] */
.augen-bracket-text {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  white-space: nowrap;
}
.augen-bracket-text::before { content: '['; color: var(--ap-blue); }
.augen-bracket-text::after  { content: ']'; color: var(--ap-blue); }

/* Scroll indicator */
.augen-scroll-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 4.8rem;
  border-radius: 99px;
  background: rgba(29,29,31,0.06);
  color: var(--ap-off-black);
}
.augen-scroll-wrap { margin-top: 0; }
@media (min-width: 734px) { .augen-scroll-wrap { margin-top: 6rem; } }

/* Fade-up animation */
.augen-fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}
.augen-fade-up.is-visible { opacity: 1; transform: none; }
.augen-fade-up:nth-child(2) { transition-delay: 0.1s; }
.augen-fade-up:nth-child(3) { transition-delay: 0.2s; }


/* ============================================================
   HERO SECTION
   Full-viewport, image full-bleed, text bottom-left
   ============================================================ */
.augen-hero {
  position: relative;
  background-color: var(--ap-near-white);
  overflow: hidden;
}

/* Bottom gradient */
.augen-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--ap-near-white) 0%, rgba(251,251,253,0) 100%);
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 734px) {
  .augen-hero::before { height: 55%; }
}

/* Pill: absolute, top-centre */
.augen-hero__pill-wrap {
  position: absolute;
  top: var(--ap-nav-y);
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  white-space: nowrap;
}

/* Full-bleed image */
.augen-hero__img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 733px) {
  .augen-hero__img-wrap { top: unset; bottom: 0; height: 60%; }
}
.augen-hero__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}

/* Grid container */
.augen-hero__container {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
  padding: 140px 22px 48px;
}
@media (min-width: 734px) {
  .augen-hero__container {
    padding: 100px 30px 56px;
    column-gap: 24px;
  }
}
@media (min-width: 1069px) {
  .augen-hero__container {
    padding-left: calc(50% - 520px);
    padding-right: calc(50% - 520px);
  }
}

/* Bottom content block */
.augen-hero__bottom {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  flex-direction: column;
  height: 62svh;
  justify-content: space-between;
}
@media (min-width: 734px) {
  .augen-hero__bottom {
    grid-column: 1 / 3;
    height: auto;
    padding-top: 0;
    justify-content: flex-start;
    gap: 2.4rem;
  }
}

/* Hero tagline */
.augen-hero__tagline {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.52;
  color: var(--ap-off-black);
  max-width: 28rem;
}
@media (min-width: 1069px) {
  .augen-hero__tagline { font-size: 1.9rem; max-width: 30rem; }
}

/* Research Insight CTA */
.augen-hero__cta {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
}

.augen-hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}


/* ============================================================
   INTRO SECTION — "At Augen Pro"
   ============================================================ */
.augen-intro {
  padding: 80px 0 72px;
}
@media (min-width: 734px) {
  .augen-intro { padding: 100px 0 88px; }
}
@media (min-width: 1069px) {
  .augen-intro { padding: 128px 0 108px; }
}

.augen-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
}
@media (min-width: 734px) {
  .augen-intro__grid {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 24px;
    row-gap: 0;
  }
  .augen-intro__head  { grid-column: 2 / 3; }
  .augen-intro__items { grid-column: 3 / 6; }
  .augen-intro__meta  { grid-column: 2 / 6; margin-top: 64px; }
  .augen-intro__talk  { grid-column: 2 / 6; margin-top: 64px; }
  .augen-intro__cta   { grid-column: 2 / 6; margin-top: 88px; }
}

.augen-intro__items {
  display: flex;
  flex-direction: column;
}

/* Mission/Vision/Ambition rows */
.augen-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  padding: 2.8rem 0;
  border-bottom: 0.5px solid rgba(29,29,31,0.1);
}
.augen-intro__item:first-child { padding-top: 0; }
.augen-intro__item:last-child  { border-bottom: none; padding-bottom: 0; }

.augen-intro__num {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ap-grey-mid);
  flex-shrink: 0;
  min-width: 2.4rem;
  padding-top: 0.5rem;
}

.augen-intro__item-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ap-grey-mid);
  margin-bottom: 0.6rem;
}

.augen-intro__item-title {
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ap-off-black);
}
@media (min-width: 734px)  { .augen-intro__item-title { font-size: 2.8rem; } }
@media (min-width: 1069px) { .augen-intro__item-title { font-size: 3.2rem; } }

/* Metadata row */
.augen-intro__meta {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (min-width: 734px) {
  .augen-intro__meta { flex-direction: row; gap: 6rem; }
}
.augen-intro__meta-item { display: flex; flex-direction: column; gap: 0.4rem; }
.augen-intro__meta-label {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ap-grey-mid);
}
.augen-intro__meta-val {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: var(--ap-off-black);
}

/* How We Talk */
.augen-intro__talk { display: flex; flex-direction: column; gap: 2rem; }
.augen-intro__talk-label {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: var(--ap-grey-mid);
}
.augen-intro__talk-items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (min-width: 734px) {
  .augen-intro__talk-items { flex-direction: row; gap: 5.6rem; flex-wrap: wrap; }
}
.augen-intro__talk-item { display: flex; align-items: center; gap: 1.6rem; }
.augen-intro__talk-def  {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: var(--ap-grey-mid);
}

/* "Invisible Approach" heading */
.augen-intro__cta-eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ap-grey-mid);
  margin-bottom: 1.2rem;
}
.augen-intro__cta-title {
  font-size: clamp(3.8rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--ap-off-black);
}


/* ============================================================
   PRODUCTS SECTION — black background
   ============================================================ */
.augen-products {
  padding: 80px 0 72px;
}
@media (min-width: 734px) {
  .augen-products { padding: 100px 0 88px; }
}
@media (min-width: 1069px) {
  .augen-products { padding: 120px 0 104px; }
}

.augen-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
@media (min-width: 734px) {
  .augen-products__grid {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 24px;
    align-items: start;
  }
  .augen-products__eyebrow   { grid-column: 1 / 6; }
  .augen-products__big-title { grid-column: 1 / 6; }
  .augen-products__images    { grid-column: 1 / 5; }
  .augen-products__copy      { grid-column: 2 / 4; margin-top: 2.4rem; }
}

.augen-products__eyebrow {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(245,245,247,0.45);
  margin-bottom: 1.2rem;
}

.augen-products__big-title { text-align: center; }
.augen-products__title-blue {
  display: block;
  font-size: clamp(5.6rem, 12vw, 15rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--ap-blue);
}

.augen-products__images {
  display: flex;
  justify-content: center;
  gap: 5vw;
  flex-wrap: wrap;
  align-items: flex-end;
}
.augen-products__img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.augen-products__img-wrap img {
  width: clamp(130px, 28vw, 280px);
  height: auto;
}
@media (min-width: 734px) {
  .augen-products__img-wrap img { width: clamp(160px, 15vw, 260px); }
}

.augen-products__copy {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.52;
  color: rgba(245,245,247,0.7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.8rem;
}
@media (max-width: 733px) {
  .augen-products__copy { align-items: center; text-align: center; }
}


/* ============================================================
   PROGRESS SECTION
   ============================================================ */
.augen-progress { padding: 80px 0 72px; }
@media (min-width: 734px)  { .augen-progress { padding: 100px 0 88px; } }
@media (min-width: 1069px) { .augen-progress { padding: 128px 0 108px; } }

.augen-progress__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
}
@media (min-width: 734px) {
  .augen-progress__grid {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }
  .augen-progress__head { grid-column: 2 / 3; padding-top: 0.4rem; }
  .augen-progress__main { grid-column: 3 / 6; }
}

.augen-progress__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.augen-progress__title {
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--ap-off-black);
  margin-bottom: 2.8rem;
}

.augen-progress__copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.52;
  color: var(--ap-grey-dark);
  max-width: 54rem;
}
.augen-progress__copy p { opacity: 0.8; }


/* ============================================================
   AIM SECTION
   ============================================================ */
.augen-aim { padding: 80px 0 72px; }
@media (min-width: 734px)  { .augen-aim { padding: 100px 0 88px; } }
@media (min-width: 1069px) { .augen-aim { padding: 128px 0 108px; } }

.augen-aim__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
}
@media (min-width: 734px) {
  .augen-aim__grid {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }
  .augen-aim__head { grid-column: 2 / 3; padding-top: 0.4rem; }
  .augen-aim__main { grid-column: 3 / 6; }
}

.augen-aim__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.augen-aim__title {
  font-size: clamp(2.8rem, 4vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--ap-off-black);
  margin-bottom: 2.8rem;
}

.augen-aim__copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.52;
  color: var(--ap-grey-dark);
  max-width: 54rem;
}
.augen-aim__copy p { opacity: 0.8; }


/* ============================================================
   CARDS SECTION
   ============================================================ */
.augen-cards { padding: 80px 0 88px; }
@media (min-width: 734px)  { .augen-cards { padding: 100px 0 108px; } }
@media (min-width: 1069px) { .augen-cards { padding: 120px 0 128px; } }

.augen-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 734px) {
  .augen-cards__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-left: calc((100% - 60px) / 5 + 24px);
  }
}

.augen-card {
  padding: 3.2rem 0;
  border-top: 0.5px solid rgba(29,29,31,0.1);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media (min-width: 734px) {
  .augen-card {
    flex-direction: row;
    gap: 3.2rem;
    padding: 4rem 0;
  }
}

.augen-card__num {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 3.2rem;
  padding-top: 0.3rem;
}
.augen-card__num--blue   { color: var(--ap-blue);   }
.augen-card__num--green  { color: var(--ap-green);  }
.augen-card__num--orange { color: var(--ap-orange); }

.augen-card__body { display: flex; flex-direction: column; }

.augen-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ap-off-black);
}
@media (min-width: 1069px) {
  .augen-card__title { font-size: 2.8rem; }
}

.augen-card__copy {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  line-height: 1.52;
  color: var(--ap-grey-mid);
  margin-top: 1rem;
  max-width: 26rem;
}

.augen-card__cta { margin-top: auto; padding-top: 3.2rem; }


/* ============================================================
   FOOTER — matches Apple footer structure
   ============================================================ */
.augen-footer {
  background: #1d1d1f;
  color: #a1a1a6;
  padding: 48px 0 28px;
}

.augen-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.augen-footer__top {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
@media (min-width: 734px) {
  .augen-footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.augen-footer__wordmark {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.016em;
  color: #a1a1a6;
}

.augen-footer__cols {
  display: flex;
  gap: 4rem;
}
@media (min-width: 734px) {
  .augen-footer__cols { gap: 5.6rem; }
}

.augen-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.augen-footer__col-head {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #a1a1a6;
  opacity: 0.6;
  margin-bottom: 0.4rem;
}

.augen-footer__col-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.augen-footer__col-list a {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.016em;
  line-height: 1.4;
  color: #f5f5f7;
  transition: opacity 0.18s;
}
.augen-footer__col-list a:hover { opacity: 0.5; }

/* Legal row */
.augen-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  color: #a1a1a6;
  letter-spacing: -0.01em;
}
.augen-footer__legal a {
  color: #a1a1a6;
  transition: color 0.18s;
}
.augen-footer__legal a:hover { color: #f5f5f7; }


/* ============================================================
   SHOP LINK — nested pill, flush to right edge
   The <li> that contains it carries a small right padding so
   the capsule sits with the same visual gap as the left edge.
   ============================================================ */
.augen-nav-pill__list li:has(.augen-nav-pill__link--shop) {
  /* push the Shop pill so it hugs the right wall evenly */
  padding-right: 0; /* handled below */
}

.augen-nav-pill__link--shop {
  display: inline-flex;
  align-items: center;
  color: var(--ap-blue) !important;
  font-weight: 500;
  opacity: 1 !important;
  /* vertical centering: match the pill height visually */
  padding: 0.55rem 1.5rem;
  border-radius: 99px;
  background: rgba(0,113,227,0.08);
  /* No extra margin — the li margin-left handles the gap from Updates */
  margin: 0;
  /* Ensure the capsule right edge aligns inside the outer pill */
  margin-right: 0.5rem;
  transition: background 0.2s;
  line-height: 1;
}
.augen-nav-pill__link--shop:hover {
  background: rgba(0,113,227,0.15);
}

/* Active link (shop/product pages) */
.augen-nav-pill__link--active {
  opacity: 1 !important;
  font-weight: 500;
}
