/* styles.css */
:root{
  --bg-top: #E8E3DD;
  --bg-bot: #E3DED8;

  --ink: #191919;
  --muted: #5D5A55;
  --muted2: #6B6864;

  --card: rgba(255,255,255,0.72);
  --card2: rgba(255,255,255,0.62);

  /* Sunrise 700 */
  --accent: #9D7E00;
  --accent-dark: #685200;

  /* blue dot */
  --dot: #2B6CB0;

  --border: rgba(25,25,25,0.10);
  --shadow: 0 18px 50px rgba(0,0,0,0.08);

  /* tighter corners (less rounded) */
  --radius: 14px;
  --radius-lg: 18px;

  --container: 1040px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }
body{
  margin:0;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-top);
}

.bg{
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bot) 100%);
}

a{ color: inherit; text-decoration: none; }
a:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
img{ max-width: 100%; display:block; }

.container{
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Skip link for accessibility */
.skip-link{
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus{
  top: 16px;
}

/* Header */
.header{
  background: var(--bg-top);
  border-bottom: 1px solid rgba(25,25,25,0.06);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand{ display:flex; align-items:center; }
.brand__logo{
  width: 120px;
  height: auto;
}
.nav{ display:flex; gap: 10px; align-items:center; }

/* Buttons */
.btn{
  border: 1px solid rgba(25,25,25,0.14);
  background: rgba(255,255,255,0.55);
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
.btn:active{ transform: translateY(0px); box-shadow:none; }

.btn--ghost{
  background: rgba(255,255,255,0.40);
}

.btn--primary{
  border-color: rgba(0,0,0,0.0);
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover{ background: var(--accent-dark); }

/* Focus styles for keyboard navigation */
.btn:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn--primary:focus-visible{
  outline-color: var(--accent-dark);
}

.btn--cta{
  padding: 12px 18px;
  font-size: 14px;
}

/* Sections */
.section{
  padding: 28px 0;
}
.section--tight{
  padding-top: 34px;
  padding-bottom: 54px;
}
.center{ text-align:center; }
.sectionTitle{
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.sectionSubtitle{
  margin: 8px auto 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.sectionBody{
  margin: 10px auto 0;
  max-width: 72ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.sectionBody--bold{
  font-weight: 700;
  color: var(--ink);
  margin-top: 14px;
}

/* Hero */
.hero{
  padding: 34px 0 18px;
}
.hero--split{
  padding-bottom: 0;
  overflow: visible;
}
.heroCard{
  background: var(--card);
  border: 1px solid rgba(25,25,25,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 72px 48px 64px;
  text-align: center;
}

/* Split Hero Layout - Cleo style (no card) */
.heroCard--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  padding: 28px 0 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero__content{
  padding-bottom: 80px;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content .h1{
  font-size: 48px;
  line-height: 1.05;
  margin-bottom: 32px;
  white-space: nowrap;
}
.hero__content .h2{
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--muted);
  margin-bottom: 36px;
  white-space: nowrap;
}
.hero__content .lede{
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero__content .waitlist{
  margin-top: 0;
}
.hero__phone{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  animation: phoneSlideUp 0.8s ease-out forwards;
  position: relative;
}
.hero__phone::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 700px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255, 229, 178, 0.65) 0%, rgba(255, 229, 178, 0) 55%);
  pointer-events: none;
  z-index: 0;
}

/* Phone Mockup - Realistic */
.phone-mockup{
  position: relative;
  width: 300px;
}
.phone-mockup__frame{
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}
.phone-mockup__screen{
  position: absolute;
  top: 2.2%;
  left: 6%;
  right: 6%;
  bottom: 2.2%;
  background: linear-gradient(180deg, #F7F4F2 0%, #F6F5EE 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: 'DM Sans', sans-serif;
  z-index: 1;
}

/* Status Bar */
.status-bar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  font-size: 14px;
  font-weight: 600;
  color: #32373A;
}
.status-bar__time{
  font-weight: 600;
  font-size: 14px;
}
.status-bar__icons{
  display: flex;
  align-items: center;
  gap: 5px;
  color: #32373A;
}
.status-icon{
  display: block;
}

/* App Header */
.app-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px 12px;
  color: #32373A;
}
.app-header__menu-btn{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #32373A;
}
.app-header__title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
}
.app-header__logo{
  height: 24px;
  width: auto;
}
.app-header__avatar{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-image: url('/images/user-avatar.png');
  background-size: cover;
  background-position: center;
}

/* Chat Footer */
.chat-footer{
  margin-top: auto;
  padding: 10px 14px 4px;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.chat-footer__input{
  padding: 8px 12px;
  color: #999;
  font-size: 13px;
  border-bottom: 1px solid #eee;
  margin-bottom: 6px;
}
.chat-footer__actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}
.chat-footer__quick-actions{
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  color: #666;
}
.chat-footer__btns{
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-footer__btn{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-footer__btn--plus{
  border: 1px solid #ccc;
  color: #32373A;
}
.chat-footer__btn--voice{
  background: #32373A;
}
.chat-footer__indicator{
  width: 80px;
  height: 4px;
  background: #32373A;
  border-radius: 2px;
  margin: 8px auto 2px;
  opacity: 0.3;
}
/* Chat Messages */
.chat-messages{
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding: 14px 16px;
}
.chat-bubble{
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 85%;
  opacity: 0;
  transform: translateY(10px);
}
.chat-bubble--user{
  background: #F1EEE7;
  color: #32373A;
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}
/* Lucie messages - plain text, no bubble (matches actual app) */
.chat-msg{
  font-size: 13px;
  line-height: 1.4;
  max-width: 90%;
  opacity: 0;
  transform: translateY(10px);
}
.chat-msg--lucie{
  color: #32373A;
  align-self: flex-start;
}

/* Chat Animations */
@keyframes phoneSlideUp{
  from{ transform: translateY(60px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}
@keyframes chatBubbleIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}
.chat-anim-1{ animation: chatBubbleIn 0.5s ease-out 0.8s forwards; }
.chat-anim-2{ animation: chatBubbleIn 0.5s ease-out 1.8s forwards; }
.chat-anim-3{ animation: chatBubbleIn 0.5s ease-out 3.0s forwards; }
.chat-anim-4{ animation: chatBubbleIn 0.5s ease-out 4.0s forwards; }
.chat-anim-5{ animation: chatBubbleIn 0.5s ease-out 5.2s forwards; }
.chat-anim-6{ animation: chatBubbleIn 0.5s ease-out 6.2s forwards; }

/* Hero heading: slightly softer than pure black */
.heroCard .h1{
  color: rgba(25,25,25,0.88);
}
.heroCard .h1 .accent{
  color: var(--accent);
}

.h1{
  margin: 0 0 16px;
  font-size: 44px;
  font-weight: 600; /* lighter than bold */
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.h2{
  margin: 0 0 22px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.accent{ color: var(--accent); }

.lede{
  margin: 0 auto 28px;
  max-width: 78ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* What makes Lucie different */
#different {
  --card2: rgba(239, 247, 254, 0.55);
}

/* Waitlist */
.waitlist{
  margin-top: 14px;
}
.waitlist__row{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content:center;
  margin: 0 auto;
  max-width: 640px;
}
.waitlist__row--center{
  justify-content:center;
}
.waitlist input{
  width: min(420px, 64vw);
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(25,25,25,0.14); /* avoid thick “brown” border */
  background: rgba(255,255,255,0.80);
  padding: 0 16px;
  font-size: 14px;
  outline: none;
  box-shadow: none;
}
.waitlist input:focus{
  border-color: rgba(157,126,0,0.55);
  box-shadow: 0 0 0 4px rgba(157,126,0,0.10);
}
.waitlist input:focus-visible{
  outline: none; /* Custom focus ring above handles visibility */
}

.waitlist__fineprint{
  margin-top: 10px;
  color: var(--muted2);
  font-size: 12px;
}
.waitlist__fineprint--spaced{ margin-top: 12px; }

/* dot list */
.dots{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  display:flex;
  column-gap: 18px;
  row-gap: 6px;
  justify-content:center;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 13px;
}
.dots--spaced{ margin-top: 18px; }
.dots li{
  display:flex;
  align-items:center;
  gap: 10px;
}
.dots li::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--dot);
  display:inline-block;
}

/* Steps (How it works) */
.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.step{
  text-align: center;
}
.step__number{
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
/* Coloured step numbers */
.step:nth-child(1) .step__number{ background: #3590F3; } /* Vivid Blue 500 */
.step:nth-child(2) .step__number{ background: #945DED; } /* Lilac 700 */
.step:nth-child(3) .step__number{ background: #588C91; } /* Azure 700 */
.step__title{
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.step__text{
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

#how-lucie-works{
  padding-bottom: 48px;
}

/* Cards grid */
.cards{
  display:grid;
  gap: 22px;
  margin-top: 18px;
}
.cards--4{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.cards--3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cards--compact{
  margin-top: 14px; /* reduce gap between subtitle and boxes */
}

.card{
  background: var(--card2);
  border: 1px solid rgba(25,25,25,0.08);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: 0 10px 34px rgba(0,0,0,0.06);
}
.card--center{ text-align:center; }
.cardTitle{
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
}
.cardText{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Section CTAs */
.sectionCtas{
  margin-top: 0px;
  display:flex;
  justify-content:center;
  gap: 10px;
}

/* Final CTA card */
.ctaCard{
  background: rgba(157,126,0,0.08);
  border: 1px solid rgba(25,25,25,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 38px 28px 34px;
  text-align:center;
}
.ctaTitle{
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ctaSub{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.ctaNote{
  margin: 14px auto 18px;
  max-width: 66ch;
  color: var(--muted);
  font-size: 14px;
}

/* Footer */
.footer{
  text-align:center;
  color: var(--muted2);
  font-size: 12px;
  padding: 22px 0 40px;
}

/* Responsive */
/* Tablet: 768px - 920px */
@media (max-width: 920px){
  .h1{ font-size: 38px; }
  .h2{ font-size: 26px; }
  .heroCard{ padding: 46px 22px 48px; }
  .heroCard--split{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 22px 0;
  }
  .hero__content .h1{ font-size: 38px; white-space: normal; margin-bottom: 20px; }
  .hero__content .h2{ font-size: 20px; white-space: normal; margin-bottom: 24px; }
  .hero__content .lede{ margin-bottom: 28px; }
  .hero__content{ padding-bottom: 0; padding-top: 0; }
  .hero__phone{ justify-content: center; }
  .hero__phone::before{ display: none; }
  .phone-mockup{ width: 280px; }
  .phone-mockup__screen, .chat-messages, .chat-footer, .chat-footer__input{ text-align: left; }
  .chat-bubble--user{ align-self: flex-end; }
  .chat-msg--lucie{ align-self: flex-start; }

  /* Scale phone content to fit */
  .status-bar{ padding: 10px 16px 6px; font-size: 13px; }
  .status-bar__time{ font-size: 13px; }
  .app-header{ padding: 4px 12px 10px; }
  .app-header__menu-btn{ width: 30px; height: 30px; }
  .app-header__logo{ height: 20px; }
  .app-header__avatar{ width: 30px; height: 30px; }
  .chat-messages{ padding: 12px 16px; gap: 12px; }
  .chat-bubble{ padding: 12px 14px; font-size: 13px; }
  .chat-msg{ font-size: 13px; }
  .chat-footer{ padding: 12px 14px 6px; }
  .chat-footer__input{ padding: 10px 14px; font-size: 13px; }
  .chat-footer__quick-actions{ padding: 6px 10px; font-size: 11px; }
  .chat-footer__btn{ width: 28px; height: 28px; }
  .chat-footer__indicator{ width: 90px; margin: 10px auto 4px; }
  .cards--3{ grid-template-columns: repeat(2, 1fr); }
  .cards--4{ grid-template-columns: repeat(2, 1fr); }
  .waitlist__row{ flex-direction: column; }
  .waitlist input{ width: 100%; max-width: 520px; }
  .btn--cta{ width: 100%; max-width: 520px; }
}

/* Tablet/Mobile: below 768px - single column */
@media (max-width: 768px){
  .cards--3{ grid-template-columns: 1fr; }
  .cards--4{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; gap: 24px; }
}

/* Mobile: make waitlist input + button stack and fill width */
@media (max-width: 520px){
  .waitlist__row{
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .waitlist__row input,
  .waitlist__row button{
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Small phones: below 375px */
@media (max-width: 375px){
  .h1{ font-size: 32px; }
  .h2{ font-size: 22px; }
  .container{ width: calc(100% - 32px); }
  .heroCard{ padding: 32px 16px 40px; }
  .heroCard--split{ padding: 32px 16px 0; }
  .sectionTitle{ font-size: 24px; }
  .dots{ gap: 10px; font-size: 12px; }
  .phone-mockup{ width: 240px; }

  .status-bar{ padding: 8px 12px 4px; font-size: 11px; }
  .app-header{ padding: 2px 10px 8px; }
  .app-header__menu-btn{ width: 26px; height: 26px; }
  .app-header__logo{ height: 16px; }
  .app-header__avatar{ width: 26px; height: 26px; }
  .chat-messages{ padding: 8px 12px; gap: 10px; }
  .chat-bubble{ padding: 10px 12px; font-size: 11px; }
  .chat-msg{ font-size: 11px; }
  .chat-footer{ padding: 10px 10px 4px; }
  .chat-footer__input{ padding: 8px 10px; font-size: 11px; }
  .chat-footer__quick-actions{ padding: 5px 8px; font-size: 10px; }
  .chat-footer__btn{ width: 24px; height: 24px; }
  .chat-footer__indicator{ width: 70px; margin: 8px auto 2px; }
}

/* UI screenshot slot (phone) */
.shot{
  width: min(90%, 320px);
  aspect-ratio: 10 / 14.1;
  margin: 8px auto 0;
  overflow: hidden;
  border-radius: 0;          /* square cut */
  background: transparent;

  /* subtle bottom fade (works in Safari + Chromium) */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 95%,
    rgba(0,0,0,0) 100%
  );
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;

  mask-image: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 95%,
    rgba(0,0,0,0) 100%
  );
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

/* image inside the crop */
.shot img{
  width: 100%;
  height: 100%;
  object-fit: contain;       /* no extra cropping */
  object-position: 50% 0%;   /* centered horizontally, top aligned */
  display: block;
  transform: none;           /* no zoom */
}
/* micro vertical alignment tweaks (safe + responsive) */
.shot--bottom { margin-top: 16px; }  /* Guidance: push image DOWN a touch */
.shot--chat   { margin-top: 26px; }  /* Chat: push image DOWN a bit more */

/* Chat screenshot: make sure the image reaches into the fade */
.shot--chat img{
  object-fit: contain;     /* keep same scale as the first image */
  object-position: 50% 0%;
}
.shot--chat{
  /* make the fade hit earlier, while the phone is still visible */
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 95%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 95%);
}
/* Bottom-anchored phone (notification case) */
.shot--bottom img{
  object-fit: contain;
  object-position: 50% 100%; /* center horizontally, bottom aligned */
}

/* Subtle top fade for bottom-anchored image (notification case) */
.shot--bottom{
  -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0) 92%
  );
  mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0) 92%
  );

  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}
/* Make all 3 cards reserve the same space for the description text */
.card--center{
  display: flex;
  flex-direction: column;
}

.card--center .cardTitle{
  min-height: 24px;
}

.card--center .cardText{
  min-height: 34px;
}
.cardIcon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px; /* 👈 this centres it */
  opacity: 1;
  display: block;
}
.formMsg{
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.formMsg.is-success{ color: #1f6f4a; }
.formMsg.is-error{ color: #9b2c2c; }

/* ===========================================
   Confirmed page styles
   =========================================== */
.page-confirmed .hero{
  padding-top: 48px;
  padding-bottom: 64px;
  display: flex;
  justify-content: center;
}

.page-confirmed .heroCard{
  max-width: 760px;
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 48px 60px;
  text-align: center;
}

.page-confirmed .h1{
  margin: 0 0 12px;
  line-height: 1.05;
}

.page-confirmed .h2{
  margin: 0 0 26px;
  line-height: 1.35;
  font-weight: 400;
}

.page-confirmed .lede{
  margin: 0;
  line-height: 1.6;
}

.page-confirmed .lede + .lede{
  margin-top: 16px;
}

.confirmedLead{
  margin: 0 0 14px;
  font-weight: 500;
}

.confirmedList{
  display: inline-block;
  margin: 0 auto 24px;
  padding: 0;
  list-style: disc;
  list-style-position: inside;
  text-align: center;
}

.confirmedList li{
  margin: 8px 0;
}

.signoff{
  margin-top: 28px;
}

/* ===========================================
   Footer links
   =========================================== */
.footer a{
  color: var(--muted2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer a:hover{
  color: var(--muted);
}

/* ===========================================
   Legal pages (Privacy, Terms)
   =========================================== */
.legal{
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0 64px;
}

.legal__title{
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.legal__section{
  margin-bottom: 28px;
}

.legal__section h2{
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
}

.legal__section p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}

.legal__section ul{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
  padding-left: 24px;
}

.legal__section li{
  margin: 6px 0;
}

.legal__section a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal__section a:hover{
  color: var(--accent-dark);
}

.legal__section address{
  font-style: normal;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}