@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #0fe7ea; /* Neo-brutalist Cyan */
  --color-primary-dark: #0bbabf;
  --color-accent: #f472b6; /* Pink */
  
  --color-bg-start: #11051c;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.6);
  --color-text-dim: rgba(255, 255, 255, 0.35);
  
  /* HoldyBox Branded Colors */
  --color-peach: #F3C19B; /* Tactile peach background */
  --color-cream: #FFFDF6; /* Clean cream container background */
  --color-ink: #1a1a1a;   /* Neo-brutalist black border */
  
  /* Font Stacks */
  --font-display: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  background-color: var(--color-bg-start);
  background-image:
    radial-gradient(130vw 130vh at 0% 0%, rgba(15, 231, 234, 0.7) 0%, transparent 100%),
    radial-gradient(130vw 130vh at 100% 100%, rgba(221, 201, 19, 0.6) 0%, transparent 100%),
    radial-gradient(100vw 100vh at 50% 50%, rgba(106, 44, 164, 0.35) 0%, transparent 100%);
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Block: Page Background Overlays */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page-bg__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(129, 24, 205, 0.2) 2px, transparent 2.5px);
  background-size: 24px 24px;
  background-position: 0px 0px;
}

.page-bg__pattern {
  position: absolute;
  inset: 0;
  background-image: url('/images/bg-pattern-3.webp');
  background-repeat: repeat;
  background-position: center center;
  background-size: 180px;
  opacity: 0.9;
}

/* Block: Main Sections (Hero, Features, Info) */
.main-section {
  max-width: 980px;
  width: calc(100% - 2rem);
  margin: 40px auto;
  min-height: 100px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.section-hero {
}



.footer__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--color-primary);
}

/* Block: Policy Card Layout (Privacy Page) */
/* Block: Policy Tabs (Folder-style navigation above the card) */
.policy-tabs {
  display: flex;
  gap: 0.5rem;
  max-width: 800px;
  margin: 3rem auto -8px auto; /* Overlaps by exactly 8px (outer border + spacer + inner border) */
  position: relative;
  z-index: 15;
  width: calc(100% - 2rem);
  padding: 0 1.5rem; /* Symmetrical padding to protect left and right corners */
  box-sizing: border-box;
}

.policy-tab {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-ink);
  background-color: var(--color-peach); /* Inactive tabs match the outer folder color */
  border: 2px solid var(--color-ink); /* Full border to prevent sub-pixel gaps */
  padding: 0.75rem 1.5rem;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
  display: inline-block;
  box-shadow: 2px -2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 12; /* Sits above card outer boundary */
}

.policy-tab:hover {
  background-color: var(--color-cream);
}

.policy-tab:focus,
.policy-tab:active {
  outline: none;
}

.policy-tab--active {
  background-color: var(--color-cream); /* Active tab merges with inner cream card */
  border-bottom-color: var(--color-cream); /* Mask the bottom border with cream */
  transform: translateY(0) !important;
  box-shadow: none;
  z-index: 16; /* Sits directly on top of card outer and inner borders */
}

/* Block: Policy Card Layout (Double-border HoldyBox) */
.policy-card {
  max-width: 800px;
  margin: 0 auto 4rem auto;
  width: calc(100% - 2rem);
  position: relative;
  z-index: 10;
}

.policy-card__outer {
  background-color: var(--color-peach);
  border: 2px solid var(--color-ink);
  border-radius: 16px;
  padding: 4px; /* Double-border spacer */
  box-sizing: border-box;
}

.policy-card__inner {
  background-color: var(--color-cream);
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--color-ink);
  box-sizing: border-box;
}

.policy-card__back-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  opacity: 0.6;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2rem;
  transition: opacity 150ms ease, transform 150ms ease;
}

.policy-card__back-link:hover {
  opacity: 1;
  transform: translateX(-2px);
}

.policy-card__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}

.policy-card__date {
  color: var(--color-ink);
  opacity: 0.5;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.policy-card__section {
  margin-bottom: 2rem;
}

.policy-card__paragraph {
  color: var(--color-ink);
  opacity: 0.95;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.policy-card__section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

/* Responsive adjustment for tabs */
@media (max-width: 600px) {
  .policy-tabs {
    gap: 0.25rem;
    padding: 0 1rem;
    margin-bottom: -8px; /* Maintain overlap on mobile */
  }
  .policy-tab {
    font-size: 0.95rem;
    border-radius: 10px 10px 0 0;
  }
  .policy-card__inner {
    padding: 1.5rem;
  }
}

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

/* Block: Layout Wrapper */
.app-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  width: 100%;
}

.main-content {
  flex: 1 0 auto;
  width: 100%;
  padding-top: 112px; /* Clears the fixed header height */
  box-sizing: border-box;
}

/* Block: Header */
.header {
  background-color: var(--color-peach);
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 4px; /* Outer border thickness */
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__inner {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-ink);
  padding: 1.25rem 1rem; /* Clean layout spacing */
}

.header__content {
  max-width: 980px;
  margin: 0 auto;
  min-height: 32px;
  display: flex;
  justify-content: space-between; /* Space logo left, nav right */
  align-items: center;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-ink);
}

.header__logo-img {
  height: 64px;
  width: 64px;
  border-radius: 14px; /* Proportional iPhone-style rounded corners */
  border: 1.5px solid var(--color-ink);
}

.header__logo-text {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem; /* Increased size */
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

/* Block: Footer */
.footer {
  background-color: var(--color-peach);
  border-top: 1px solid var(--color-ink);
  padding-top: 4px; /* Outer border thickness */
  width: 100%;
  flex-shrink: 0; /* Ensures sticky footer behavior */
}

.footer__inner {
  background-color: var(--color-cream);
  border-top: 1px solid var(--color-ink);
  padding: 1.5rem 1rem;
}

.footer__content {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 600px;
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
}

.footer__copy {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.footer__disclaimer {
  font-size: 0.75rem;
  color: var(--color-ink);
  opacity: 0.6;
  line-height: 1.4;
}

.footer__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-ink);
}

.footer__contact {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease;
  display: inline-block;
}

.footer__contact:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.footer__contact:active {
  transform: translateY(1px);
}

.footer__tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.8;
}

/* Responsive Footer adjustments */
@media (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .footer__right {
    align-items: flex-start;
    text-align: left;
  }
}

/* Block: Header Navigation */
.header__nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header__nav-link {
  font-family: var(--font-display);
  font-size: 1.3rem; /* Increased by 4px */
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  transition: color 150ms ease, transform 150ms ease, text-shadow 150ms ease;
  display: inline-block;
}

.header__nav-link:hover {
  color: var(--color-accent); /* Hover highlight */
  transform: translateY(-2px);
  text-shadow: 1px 1px 0px var(--color-ink);
}

.header__nav-link:active {
  transform: translateY(1px);
}

/* Responsive Overrides */
@media (max-width: 480px) {
  .header__logo-text {
    display: none; /* Hide app name text on small mobile, show rounded icon only */
  }
  .header__nav {
    gap: 1rem;
  }
  .header__nav-link {
    font-size: 1.1rem; /* Scaled up for mobile */
  }
}

/* ==========================================
   Block: Hero Layout & Columns
   ========================================== */
.section-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1.5rem;
}

.hero-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-column--left,
.hero-column--right {
  flex: 1;
}

.hero-column--center {
  flex: 1.2;
}

/* Postcard Preview Block */
.hero-postcard {
  position: relative; /* Crucial for absolute positioning of badge sticker */
  width: 100%;
  max-width: 280px; /* Increased to make them prominent postcards! */
  transition: transform 250ms ease;
  box-sizing: border-box;
  aspect-ratio: 160 / 220; /* Matches AppConstants.postcardPreviewWidth / Height ratio */
}

.hero-postcard--left {
  transform: rotate(-4deg);
}

.hero-postcard--left:hover {
  transform: rotate(-1deg) scale(1.05);
}

.hero-postcard--right {
  transform: rotate(4deg);
}

.hero-postcard--right:hover {
  transform: rotate(1deg) scale(1.05);
}

/* Sticker / Badge floating text style */
.hero-postcard__badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  border: 1px solid var(--color-ink);
  border-radius: 9999px;
  padding: 0.35rem 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--color-ink);
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  transition: transform 250ms ease, box-shadow 250ms ease;
  z-index: 20;
}

.hero-postcard--left .hero-postcard__badge {
  background-color: var(--color-primary); /* Cyan label for holiday */
  transform: translateX(-50%) rotate(-2deg);
}

.hero-postcard--left:hover .hero-postcard__badge {
  transform: translateX(-50%) rotate(-1deg) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.hero-postcard--right .hero-postcard__badge {
  background-color: var(--color-accent); /* Pink label for birthdays */
  transform: translateX(-50%) rotate(2deg);
}

.hero-postcard--right:hover .hero-postcard__badge {
  transform: translateX(-50%) rotate(1deg) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.hero-postcard__outer {
  background-color: #ffffff; /* White outer frame in HoldyPostcardPreview */
  border: 1px solid #000000; /* giftCardBorderColor & giftCardBorderWidth */
  border-radius: 0px; /* giftCardBorderRadius = 0 */
  padding: 10px; /* giftCardFramePadding = 10.0 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); /* giftCardShadowColor 12% opacity, offset (0, 4) */
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

.hero-postcard__inner {
  background-color: #ffffff;
  border: 1px solid #000000; /* giftCardInnerBorderWidth = 1.0 */
  border-radius: 0px; /* giftCardInnerRadius = 0 */
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-postcard__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fafafa;
}

.hero-postcard__emoji {
  font-size: 4rem;
}

.hero-postcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Center HoldyBox Card Block */
.hero-card {
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
}

.hero-card__outer {
  background-color: var(--color-peach); /* Color(0xFFF3C19B) */
  border: 1px solid var(--color-ink); /* boxOutlineWidth = 1.0 */
  border-radius: 16px; /* boxOuterRadius = 16.0 */
  padding: 4px; /* boxOuterPadding = 4.0 */
  box-sizing: border-box;
}

.hero-card__inner {
  background-color: var(--color-cream); /* boxBackgroundColor = Color(0xFFFFFDF6) */
  border: 1px solid var(--color-ink); /* boxOutlineWidth = 1.0 */
  border-radius: 12px; /* boxInnerRadius = 12.0 */
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--color-ink);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.hero-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.hero-card__tagline {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-card__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  color: var(--color-ink);
  font-weight: 400;
}

.hero-card__subtitle strong {
  font-weight: 700;
  color: #db2777;
}

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

/* Official Apple App Store Download Badge Link & Image */
.app-store-btn-link {
  display: inline-block;
  transition: opacity 150ms ease;
}

.app-store-btn-link:hover {
  opacity: 0.85;
}

.app-store-btn-link:active {
  opacity: 0.75;
}

.app-store-btn-img {
  display: block;
  height: 40px; /* Standard Apple Badge height */
  width: auto;
}

/* Responsive adjustment for Hero section */
@media (max-width: 768px) {
  .hero-column--left,
  .hero-column--right {
    display: none; /* Hide postcards on mobile screens */
  }
  .section-hero {
    justify-content: center;
    padding: 3rem 1rem;
  }
  .hero-card__inner {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   Block: Features Card Layout (Landing Page)
   ========================================== */
.features-tabs {
  display: flex;
  gap: 0.35rem;
  max-width: 980px;
  margin: 3rem auto -8px auto; /* Overlaps card top borders by exactly 8px */
  position: relative;
  z-index: 15;
  width: calc(100% - 2rem);
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.features-tab {
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-ink);
  background-color: var(--color-peach);
  border: 2px solid var(--color-ink);
  padding: 0.45rem 1.0rem;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  white-space: nowrap;
  box-shadow: 2px -2px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 12;
}

.features-tab__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.features-tab:hover {
  background-color: var(--color-cream);
}

.features-tab:focus,
.features-tab:active {
  outline: none;
}

.features-tab--active {
  background-color: var(--color-cream);
  border-bottom-color: var(--color-cream);
  transform: translateY(0) !important;
  box-shadow: none;
  z-index: 16;
}

.features-card {
  max-width: 980px;
  margin: 0 auto 4rem auto;
  width: calc(100% - 2rem);
  position: relative;
  z-index: 10;
}

.features-card__outer {
  background-color: var(--color-peach);
  border: 2px solid var(--color-ink);
  border-radius: 16px;
  padding: 4px;
  box-sizing: border-box;
}

.features-card__inner {
  background-color: var(--color-cream);
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  padding: 2.5rem;
  color: var(--color-ink);
  box-sizing: border-box;
  min-height: 250px;
}

.features-panel {
  display: none;
}

.features-panel--active {
  display: block;
  animation: featureFadeIn 200ms ease;
}

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

@media (max-width: 768px) {
  .features-tabs {
    gap: 0.3rem;
    padding: 0 1rem;
    margin-top: 1.5rem;
  }
  .features-tab {
    font-size: 0.95rem;
    padding: 0.6rem;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border-radius: 10px 10px 0 0;
  }
  .features-tab:has(.features-tab__icon) .features-tab__text {
    display: none; /* Hide tab label text on mobile only when an icon is loaded */
  }
  .features-card__inner {
    padding: 1.5rem 1.25rem;
  }
}

/* Features Panel Content & Device Mockup Grid */
.features-panel__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.features-panel__content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-ink);
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.features-panel__content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
  margin-bottom: 1rem;
}

.features-panel__preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.device-mockup {
  position: relative;
  border: 10px solid var(--color-ink); /* Black device bezel bezel */
  border-radius: 40px;
  background-color: var(--color-ink);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 250px;
  width: 100%;
  box-sizing: border-box;
}

/* iPhone Physical Side Buttons */
.device-mockup__button {
  position: absolute;
  background-color: var(--color-ink);
  width: 3px;
  border-radius: 2px;
  z-index: 1;
}

.device-mockup__button--power {
  top: 95px;
  right: -13px; /* Hangs outside the bezel */
  height: 45px;
  border-radius: 0 3px 3px 0;
}

.device-mockup__button--volume-up {
  top: 85px;
  left: -13px; /* Hangs outside the bezel */
  height: 32px;
  border-radius: 3px 0 0 3px;
}

.device-mockup__button--volume-down {
  top: 125px;
  left: -13px; /* Hangs outside the bezel */
  height: 32px;
  border-radius: 3px 0 0 3px;
}

/* Screen Wrapper (handles clipping for screen radius and notch) */
.device-mockup__screen-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background-color: #000000;
  display: block;
}

/* iPhone 12 Notch Capsule */
.device-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 16px;
  background-color: var(--color-ink);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Speaker Line */
.device-mockup__notch::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 2px;
  background-color: #333333;
  border-radius: 1px;
}

/* Camera Lens Dot */
.device-mockup__notch::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 25px;
  width: 4px;
  height: 4px;
  background-color: #1a1e36;
  border-radius: 50%;
}

.device-mockup__screen {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 9 / 19.5; /* Modern aspect ratio */
}

/* Device Mockup Image Slider */
.device-mockup__slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.device-mockup__slide {
  min-width: 100%;
  width: 100%;
  height: 100%;
  display: none;
}

.device-mockup__slide--active {
  display: block;
}

/* Device Mockup Wrapper */
.device-mockup-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

/* Slider Dots */
.device-mockup__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.device-mockup__dot {
  width: 8px;
  height: 8px;
  background-color: #e5e7eb;
  border: 1.5px solid var(--color-ink);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.device-mockup__dot--active {
  width: 20px;
  background-color: var(--color-peach);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .features-panel__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .features-panel__preview {
    margin-top: 1rem;
  }
  .device-mockup {
    max-width: 200px;
    border-radius: 32px;
    border-width: 8px;
  }
  .device-mockup__screen-wrapper {
    border-radius: 24px;
  }
  .device-mockup__notch {
    width: 85px;
    height: 12px;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
  }
  .device-mockup__notch::before {
    width: 25px;
    top: 2px;
  }
  .device-mockup__notch::after {
    right: 18px;
    top: 4px;
  }
  .device-mockup__button {
    display: none; /* Hide button accents on mobile viewports for clean scaling */
  }
  .feature-steps {
    max-width: 500px;
    margin: 1.5rem auto 0 auto;
  }
}

/* Custom Numbered Steps list styling */
.feature-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-align: left;
}

.feature-step__number {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
  line-height: 1;
}

/* Steps Colors */
.feature-step__number--green {
  background-color: #86efac; /* Brand green matching app calendar */
}

.feature-step__number--orange {
  background-color: #fdba74; /* Brand orange matching app calendar */
}

.feature-step__number--pink {
  background-color: #fbcfe8; /* Brand pink matching app calendar */
}

.feature-step__number--cyan {
  background-color: #a5f3fc; /* Brand cyan matching app calendar */
}

.feature-step__number--purple {
  background-color: #d8b4fe; /* Brand purple matching app calendar */
}

.feature-step__number--yellow {
  background-color: #fef08a; /* Brand yellow matching app calendar */
}

.feature-step__text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-ink);
}

.feature-step__text strong {
  font-weight: 700;
  color: #db2777;
}

/* Block: SEO & Marketing Article Typography (section-info) */
.section-info {
  line-height: 1.8;
  color: var(--color-ink);
  font-family: var(--font-body);
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.article-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.article-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--color-ink);
}

.article-subtitle {
  font-size: 1.25rem;
  opacity: 0.7;
  font-weight: 500;
  max-width: 750px;
  margin: 0 auto;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.article-section {
  margin-bottom: 3.5rem;
}

.article-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-ink);
}

.article-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.8rem;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.article-section p {
  margin-bottom: 1.5rem;
}

.article-section ul,
.article-section ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.article-section li {
  margin-bottom: 0.5rem;
}

.article-section strong {
  font-weight: 700;
  color: #db2777; /* Deep brand rose pink */
}
