/* ============================================================
   PickUp Sign — Design Tokens & Styles
   Dark-first, taxi-yellow accent, ultra-minimal
   ============================================================ */

/* ----- TOKENS ----- */
:root {
  /* Type scale */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Fonts */
  --font-body: 'General Sans', 'Helvetica Neue', sans-serif;
  --font-display: 'General Sans', 'Helvetica Neue', sans-serif;

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-full: 9999px;

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* Accent */
  --color-accent: #FFCB00;
  --color-accent-hover: #FFD633;
  --color-accent-dim: rgba(255, 203, 0, 0.12);
}

/* ----- DARK THEME (default) ----- */
[data-theme='dark'],
:root {
  --color-bg: #0A0A0A;
  --color-surface: #111111;
  --color-surface-2: #1A1A1A;
  --color-surface-3: #222222;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.15);
  --color-text: #F2F2F0;
  --color-text-muted: #8A8A86;
  --color-text-faint: #555550;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* ----- LIGHT THEME ----- */
[data-theme='light'] {
  --color-bg: #FAFAF8;
  --color-surface: #FFFFFF;
  --color-surface-2: #F5F5F2;
  --color-surface-3: #EEEEE9;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.15);
  --color-text: #1A1A18;
  --color-text-muted: #6E6E6A;
  --color-text-faint: #A0A09C;
  --color-accent: #D4A800;
  --color-accent-hover: #B89300;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}


/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--narrow {
  max-width: var(--content-default);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: background 300ms, box-shadow 300ms;
}
[data-theme='light'] .header {
  background: rgba(250, 250, 248, 0.85);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}
.header__logo svg {
  flex-shrink: 0;
}
.header__wordmark {
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: -0.02em;
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .header__nav { display: flex; }
}
.header__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
}
.header__link:hover {
  color: var(--color-text);
}
.header__cta {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  border-radius: var(--radius-full);
}
.header__cta:hover {
  background: var(--color-accent-hover);
}

/* Language switcher */
.lang-switch {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: color 150ms;
}
.lang-switch__btn:hover {
  color: var(--color-text);
}
.lang-switch__dropdown {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  min-width: 140px;
  z-index: 200;
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
}
.lang-switch__dropdown[hidden] {
  display: none;
}
.lang-switch__dropdown a {
  display: block;
  padding: var(--space-2) var(--space-4);
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 400;
  transition: background 100ms, color 100ms;
}
.lang-switch__dropdown a:hover {
  background: var(--color-surface-3);
  color: var(--color-text);
}
.lang-switch__dropdown a.active {
  color: var(--color-accent);
  font-weight: 600;
}

/* Mobile menu button */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .header__menu-btn { display: none; }
}

.header__mobile-nav {
  padding: var(--space-4) var(--space-5) var(--space-6);
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}
.header__mobile-nav[hidden] {
  display: none;
}
.header__mobile-link {
  display: block;
  padding: var(--space-3) 0;
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-base);
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
}
.header__mobile-link--cta {
  margin-top: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--color-accent);
  color: #000;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-full);
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: clamp(var(--space-16), 10vw, var(--space-32)) 0 clamp(var(--space-12), 8vw, var(--space-24));
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
}

.hero__heading {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--color-text);
}
.hero__heading--accent {
  color: var(--color-accent);
}

.hero__sub {
  margin-top: var(--space-5);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
  line-height: 1.7;
}

.hero__actions {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* App badges */
.app-badge { display: inline-flex; }
.app-badge svg { display: block; }
.app-badge--ios:hover svg rect { fill: #f0f0f0; }
.app-badge--android { opacity: 0.4; cursor: default; }

/* Mockups in hero */
.hero__mockups {
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  position: relative;
}
@media (min-width: 768px) {
  .hero__mockups {
    justify-content: flex-end;
  }
}

/* ============================================================
   PHONE MOCKUP (CSS device frames)
   ============================================================ */
.phone-mockup {
  flex-shrink: 0;
}
.phone-mockup__frame {
  position: relative;
  width: 180px;
  height: 370px;
  background: #1C1C1E;
  border-radius: 28px;
  padding: 8px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.5),
    0 4px 16px rgba(0,0,0,0.3);
  overflow: hidden;
}
[data-theme='light'] .phone-mockup__frame {
  background: #2C2C2E;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.1),
    0 20px 60px rgba(0,0,0,0.15),
    0 4px 16px rgba(0,0,0,0.08);
}

.phone-mockup__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #1C1C1E;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
[data-theme='light'] .phone-mockup__notch {
  background: #2C2C2E;
}

.phone-mockup__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.phone-mockup__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  padding: var(--space-3);
}

/* Hero secondary mockup offset */
.phone-mockup--secondary {
  margin-top: 3rem;
}
.phone-mockup--secondary .phone-mockup__frame {
  width: 155px;
  height: 320px;
  border-radius: 24px;
}
.phone-mockup--secondary .phone-mockup__notch {
  width: 68px;
  height: 19px;
}
.phone-mockup--secondary .phone-mockup__screen {
  border-radius: 17px;
}
.phone-mockup--secondary .phone-mockup__name {
  font-size: 1.8rem;
}

/* Colour section mockup */
.phone-mockup--colour .phone-mockup__frame {
  width: 200px;
  height: 410px;
  border-radius: 30px;
}
.phone-mockup--colour .phone-mockup__screen {
  border-radius: 22px;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 0;
}
.phone-mockup--colour .phone-mockup__name {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  white-space: nowrap;
}

/* Colour picker inside mockup */
.phone-mockup__picker {
  width: 100%;
  background: transparent;
  padding: var(--space-3) var(--space-2) var(--space-4);
}
.picker__row {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.picker__dot {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid transparent;
  flex-shrink: 0;
}
.picker__dot--active {
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}

/* Showcase mockup (edit view with keyboard) */
.showcase__row {
  display: flex;
  justify-content: center;
  padding: var(--space-8) 0;
}
.phone-mockup--showcase .phone-mockup__frame {
  width: 220px;
  height: 440px;
  border-radius: 32px;
  padding: 10px;
}
.phone-mockup--showcase .phone-mockup__notch {
  top: 10px;
  width: 90px;
  height: 24px;
}
.phone-mockup--showcase .phone-mockup__screen {
  border-radius: 22px;
}

.edit-view {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.edit-view__field {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.edit-view__text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.edit-view__cursor {
  width: 2px;
  height: 2rem;
  background: var(--color-accent);
  animation: blink 1.2s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.edit-view__keyboard {
  background: #2C2C2E;
  padding: 6px 4px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 0 0 20px 20px;
}
.kb-row {
  display: flex;
  justify-content: center;
  gap: 3px;
}
.kb-key {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 22px;
  background: #4A4A4C;
  border-radius: 4px;
  font-size: 8px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-body);
}
.kb-key--shift,
.kb-key--del {
  min-width: 24px;
  background: #3A3A3C;
  font-size: 9px;
}
.kb-key--space {
  flex: 1;
  background: #4A4A4C;
  font-size: 7px;
  color: rgba(255,255,255,0.6);
}
.kb-key--go {
  min-width: 40px;
  background: var(--color-accent);
  color: #000;
  font-weight: 700;
  font-size: 8px;
}
.kb-row--bottom {
  gap: 4px;
  padding: 0 4px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: var(--space-12);
}
.text-accent { color: var(--color-accent); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.step {
  text-align: center;
  max-width: 220px;
}
.step__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  font-weight: 700;
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}
.step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.step__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.step__divider {
  display: none;
  align-items: center;
  padding-top: 2.5rem;
}
@media (min-width: 768px) {
  .step__divider { display: flex; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 600px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: border-color 180ms, box-shadow 180ms;
}
.feature-card:hover {
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-md);
}
.feature-card__icon {
  margin-bottom: var(--space-4);
}
.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   COLOUR THEMES
   ============================================================ */
.colours {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.colours__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .colours__layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
  }
}

.colours__desc {
  margin-top: var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 38ch;
  line-height: 1.7;
}

.colours__palette {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.colour-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.colour-dot--more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
}

.colours__mockup {
  display: flex;
  justify-content: center;
}

/* ============================================================
   USE CASES
   ============================================================ */
.use-cases {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

.use-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .use-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.use-case {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  transition: border-color 180ms;
}
.use-case:hover {
  border-color: var(--color-border-strong);
}
.use-case__icon {
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}
.use-case__title {
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-1);
}
.use-case__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 600px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  margin: 0;
}
.testimonial__text {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.testimonial__text::before {
  content: '\201C';
  color: var(--color-accent);
  font-size: 1.2em;
  font-style: normal;
}
.testimonial__text::after {
  content: '\201D';
  color: var(--color-accent);
  font-size: 1.2em;
  font-style: normal;
}
.testimonial__author {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}
.testimonial__role {
  font-weight: 400;
  color: var(--color-text-faint);
}
.testimonial__role::before {
  content: '/ ';
}

/* Showcase mockup removed as standalone section */

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
}

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

.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform 200ms;
  flex-shrink: 0;
  margin-left: var(--space-4);
}
.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 0 var(--space-5);
}
.faq__answer p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.faq__answer a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq__answer a:hover {
  color: var(--color-accent-hover);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}

.final-cta__inner {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}
.final-cta__heading {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.final-cta__mockup {
  margin-bottom: var(--space-8);
  display: flex;
  justify-content: center;
}
.final-cta .app-badge--large {
  display: inline-flex;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--space-10) 0 var(--space-8);
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.footer__brand svg {
  flex-shrink: 0;
}
.footer__company {
  font-weight: 600;
  font-size: var(--text-sm);
}
.footer__location {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
}
.footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__links a:hover {
  color: var(--color-text);
}

.footer__copy {
  margin-top: var(--space-8);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

/* ============================================================
   LANGUAGE SUGGESTION BAR
   ============================================================ */
.lang-suggest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent);
  color: #000;
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
}
.lang-suggest a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lang-suggest button {
  color: #000;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.6;
  cursor: pointer;
  padding: 0 var(--space-1);
}
.lang-suggest button:hover {
  opacity: 1;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms cubic-bezier(0.16, 1, 0.3, 1), transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.visible > * {
  opacity: 0;
  transform: translateY(16px);
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */

/* Phone mockups on mobile */
@media (max-width: 767px) {
  .phone-mockup--hero .phone-mockup__frame {
    width: 150px;
    height: 310px;
    border-radius: 24px;
  }
  .phone-mockup--hero .phone-mockup__name {
    font-size: 2rem;
  }
  .phone-mockup--secondary .phone-mockup__frame {
    width: 130px;
    height: 270px;
    border-radius: 22px;
  }
  .phone-mockup--secondary .phone-mockup__name {
    font-size: 1.5rem;
  }
  .phone-mockup--secondary {
    margin-top: 2rem;
  }
}

/* Small phones */
@media (max-width: 374px) {
  .hero__heading {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .phone-mockup--hero .phone-mockup__frame {
    width: 130px;
    height: 270px;
    border-radius: 22px;
  }
  .phone-mockup--secondary .phone-mockup__frame {
    width: 110px;
    height: 230px;
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .hero__mockups {
    justify-content: center;
  }
  .hero__content {
    text-align: center;
  }
  .hero__sub {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .colours__layout {
    text-align: center;
  }
  .colours__desc {
    margin-inline: auto;
  }
  .colours__palette {
    justify-content: center;
  }
  .section-heading {
    text-align: center;
  }
}

/* ============================================================
   LANDSCAPE PHONE MOCKUP
   ============================================================ */
.phone-mockup--landscape {
  width: 100%;
  display: flex;
  justify-content: center;
}
.phone-mockup__frame-landscape {
  position: relative;
  width: 420px;
  height: 200px;
  background: #1C1C1E;
  border-radius: 20px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 20px 60px rgba(0,0,0,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone-mockup__notch-landscape {
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 52px;
  background: #1C1C1E;
  border-radius: 8px 0 0 8px;
  z-index: 2;
}
.phone-mockup__screen-landscape {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.phone-mockup__name-landscape {
  font-family: 'General Sans', sans-serif;
  font-weight: 800;
  font-size: 84px;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

@media (max-width: 767px) {
  .phone-mockup__frame-landscape {
    width: 320px;
    height: 155px;
    border-radius: 16px;
  }
  .phone-mockup__name-landscape {
    font-size: 60px;
  }
  .phone-mockup__notch-landscape {
    width: 14px;
    height: 40px;
  }
}
