/* ============================================================
   Cycora — Botanical Editorial Design System
   Premium wellness aesthetic: warm, alive, refined
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* --- Custom Properties --- */
:root {
  /* Palette — warm rose spectrum */
  --rose:        #C45C6E;
  --rose-bright: #D4697B;
  --blush:       #E8A1B5;
  --coral:       #F0C4A8;
  --peach:       #F5DDD0;
  --deep-rose:   #8B3A4A;
  --wine:        #5C1F2E;
  --ivory:       #FDF8F5;
  --cream:       #FFF5F0;
  --white:       #FFFFFF;
  --text:        #2C1B1F;
  --text-soft:   #7A6069;
  --text-muted:  #A8939A;
  --border:      rgba(139, 58, 74, 0.08);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-py:   clamp(5rem, 10vw, 9rem);
  --container:    1240px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --nav-h:        72px;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm:     0 1px 3px rgba(44, 27, 31, 0.04);
  --sh-md:     0 4px 20px rgba(139, 58, 74, 0.07);
  --sh-lg:     0 12px 40px rgba(139, 58, 74, 0.10);
  --sh-xl:     0 20px 60px rgba(139, 58, 74, 0.12);
  --sh-device: 0 32px 80px rgba(139, 58, 74, 0.18), 0 8px 24px rgba(0, 0, 0, 0.05);
  --sh-glow:   0 0 120px 40px rgba(232, 161, 181, 0.25);

  /* Ease */
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}


/* ============================================================
   Reset
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection {
  background-color: rgba(232, 161, 181, 0.35);
  color: var(--deep-rose);
}


/* ============================================================
   Background Blobs — organic atmosphere
   ============================================================ */

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  will-change: transform;
}

.blob--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  right: -8%;
  background: radial-gradient(circle, rgba(232, 161, 181, 0.4) 0%, rgba(245, 221, 208, 0.15) 60%, transparent 80%);
  animation: blobDrift1 25s ease-in-out infinite;
}

.blob--2 {
  width: 500px;
  height: 500px;
  top: 40%;
  left: -12%;
  background: radial-gradient(circle, rgba(240, 196, 168, 0.35) 0%, rgba(196, 92, 110, 0.08) 60%, transparent 80%);
  animation: blobDrift2 30s ease-in-out infinite;
}

.blob--3 {
  width: 450px;
  height: 450px;
  bottom: -5%;
  right: 20%;
  background: radial-gradient(circle, rgba(232, 161, 181, 0.25) 0%, transparent 70%);
  animation: blobDrift3 22s ease-in-out infinite;
}

@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(-30px, 40px) scale(1.05); }
  66%      { transform: translate(20px, -20px) scale(0.97); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(40px, -30px) scale(1.08); }
  70%      { transform: translate(-20px, 25px) scale(0.95); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-35px, -20px) scale(1.04); }
}


/* ============================================================
   Shared Typography
   ============================================================ */

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.01em;
}


/* ============================================================
   Reveal Animations
   ============================================================ */

@keyframes revealUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes revealScale {
  from { opacity: 0; transform: scale(0.96) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   Navigation
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background-color: rgba(253, 248, 245, 0.85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep-rose);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--rose);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-link--cta {
  color: var(--white);
  background: var(--rose);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-pill);
  font-weight: 500;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--deep-rose); transform: translateY(-1px); color: var(--white); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Language switcher */
.language-switcher { position: relative; }

.language-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}

.language-switcher-toggle:hover {
  border-color: var(--blush);
  color: var(--rose);
  background: var(--white);
}

.language-switcher-globe { opacity: 0.6; }

.language-switcher-icon {
  transition: transform 0.2s var(--ease);
}

.language-switcher-toggle[aria-expanded="true"] .language-switcher-icon {
  transform: rotate(180deg);
}

.language-switcher-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  padding: 0.5rem 0;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease), transform 0.2s var(--ease);
  z-index: 100;
}

.language-switcher-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-switcher-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.language-switcher-menu li a:hover {
  background: var(--cream);
  color: var(--rose);
}

/* Mobile hamburger */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
}

.nav-mobile-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle[aria-expanded="true"] .nav-mobile-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: visible;
}

.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  min-height: calc(100vh - var(--nav-h) - 4rem);
  min-height: calc(100dvh - var(--nav-h) - 4rem);
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--rose);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--blush);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 2.25rem;
  max-width: 460px;
}

.hero-actions {
  margin-bottom: 0.75rem;
}

/* App Store button — native-style black pill */
.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--text);
  color: var(--white);
  padding: 0.75rem 1.5rem 0.75rem 1.25rem;
  border-radius: var(--r-md);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s var(--ease);
  box-shadow: var(--sh-md);
}

.hero-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--sh-lg);
}

.hero-cta-btn:active {
  transform: scale(0.98);
}

.hero-cta-btn svg {
  flex-shrink: 0;
  margin-top: -2px;
}

.hero-cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.hero-cta-small {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.hero-cta-big {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-cta-btn--light {
  background: var(--white);
  color: var(--text);
}

.hero-available {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* Device mockup */
.hero-device {
  position: relative;
  flex-shrink: 0;
  width: clamp(240px, 30vw, 340px);
}

.hero-device-glow {
  position: absolute;
  top: 15%;
  left: -20%;
  width: 140%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(232, 161, 181, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-device-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(139, 58, 74, 0.16))
          drop-shadow(0 8px 20px rgba(0, 0, 0, 0.06));
  animation: floatSoft 6s ease-in-out infinite;
}


/* ============================================================
   Features
   ============================================================ */

.features {
  padding: var(--section-py) 0;
  position: relative;
}

.features-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.features-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 161, 181, 0.12);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem 2.25rem;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(253, 248, 245, 0) 0%, rgba(245, 221, 208, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(232, 161, 181, 0.25);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(232, 161, 181, 0.15) 0%, rgba(245, 221, 208, 0.25) 100%);
  color: var(--rose);
  transition: transform 0.3s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-soft);
}


/* ============================================================
   Showcase (Screenshots)
   ============================================================ */

.showcase {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background shift */
.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 30%, var(--ivory) 100%);
  z-index: -1;
}

.showcase-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.showcase-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* iPhone trio — staggered perspective */
.showcase-devices {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
}

.showcase-phone {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.showcase-phone-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(139, 58, 74, 0.14))
          drop-shadow(0 8px 16px rgba(0, 0, 0, 0.05));
}

.showcase-phone--left {
  width: clamp(140px, 20vw, 220px);
  margin-top: 4rem;
  transform: rotate(-3deg);
}

.showcase-phone--center {
  width: clamp(180px, 26vw, 280px);
  z-index: 2;
}

.showcase-phone--right {
  width: clamp(140px, 20vw, 220px);
  margin-top: 4rem;
  transform: rotate(3deg);
}

.showcase-phone--left:hover { transform: rotate(-1deg) translateY(-8px); }
.showcase-phone--center:hover { transform: translateY(-8px); }
.showcase-phone--right:hover { transform: rotate(1deg) translateY(-8px); }


/* ============================================================
   Bottom CTA
   ============================================================ */

.bottom-cta {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--deep-rose) 0%, var(--wine) 100%);
  z-index: -2;
}

.bottom-cta-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
  position: relative;
}

.bottom-cta-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-left: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 161, 181, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.bottom-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.bottom-cta-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 480px;
  margin-inline: auto;
}


/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--ivory);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--deep-rose);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
}

.footer-link:hover { color: var(--rose); }

/* Legal page links */
.legal-body a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s var(--ease);
}
.legal-body a:hover { opacity: 0.75; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-languages {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-languages a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
}

.footer-languages a:hover { color: var(--rose); }

.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}


/* ============================================================
   Responsive — Tablet
   ============================================================ */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-phone--left { width: clamp(120px, 22vw, 180px); margin-top: 3rem; }
  .showcase-phone--center { width: clamp(160px, 28vw, 240px); }
  .showcase-phone--right { width: clamp(120px, 22vw, 180px); margin-top: 3rem; }
}


/* ============================================================
   Responsive — Mobile
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  /* Nav mobile overlay */
  .nav-links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: rgba(253, 248, 245, 0.97);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
    z-index: 999;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link { font-size: 1.2rem; }

  .nav-link--cta {
    margin-top: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }

  .nav-mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  /* Hero mobile */
  .hero-inner {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-eyebrow {
    padding-left: 0;
  }
  .hero-eyebrow::before { display: none; }

  .hero-subtitle {
    max-width: 380px;
  }

  .hero-device {
    width: 220px;
    order: -1;
  }

  .hero-device-image {
    animation-duration: 5s;
  }

  /* Features mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .feature-card {
    text-align: left;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1rem;
    padding: 1.25rem;
  }

  .feature-icon {
    grid-row: 1 / 3;
    margin: 0;
    align-self: center;
  }

  .feature-title { margin-bottom: 0.2rem; }

  /* Showcase mobile */
  .showcase-devices { gap: 0.75rem; }
  .showcase-phone--left { width: 100px; margin-top: 2rem; }
  .showcase-phone--center { width: 140px; }
  .showcase-phone--right { width: 100px; margin-top: 2rem; }

  /* Footer mobile */
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-brand { align-items: center; }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-languages {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-device { width: 200px; }
  .showcase-phone--left { width: 85px; margin-top: 1.5rem; }
  .showcase-phone--center { width: 120px; }
  .showcase-phone--right { width: 85px; margin-top: 1.5rem; }
  .bottom-cta-heading { font-size: 1.75rem; }
}


/* ============================================================
   Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
  .hero-device-image { animation: none; }
  .blob { animation: none; }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* ============================================================
   Focus Visible
   ============================================================ */

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

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ============================================================
   Noise Texture Overlay — subtle grain for depth
   ============================================================ */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}
