@font-face {
  font-family: Manrope;
  src: url("assets/fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: Cormorant;
  src: url("assets/fonts/Cormorant-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #403741;
  --ink-strong: #292329;
  --muted: #857982;
  --plum: #685b67;
  --plum-dark: #514550;
  --accent: #c43d82;
  --accent-dark: #9d2f6a;
  --violet: #7658d7;
  --accent-gradient: linear-gradient(135deg, #d54186 0%, #a143a1 48%, #7559d8 100%);
  --rose: #f4edf1;
  --rose-deep: #e9dce4;
  --blush: #fbf7f9;
  --cream: #fcfaf7;
  --white: #ffffff;
  --line: rgba(74, 60, 72, 0.13);
  --shadow: 0 24px 70px rgba(70, 51, 65, 0.13);
  --max-width: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--blush);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2 {
  margin: 0;
  color: var(--ink-strong);
  font-family: Cormorant, Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}
h1 em, h2 em {
  background: var(--accent-gradient);
  color: transparent;
  font-weight: 400;
  -webkit-background-clip: text;
  background-clip: text;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--ink-strong);
  color: var(--white);
}
.skip-link:focus { transform: translateY(0); }
.section-inner, .header-inner, .hero-inner {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}
.section { padding: 120px 0; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--accent-gradient);
  content: "";
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(74, 60, 72, 0.07);
  background: rgba(251, 247, 249, 0.86);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.header-inner { display: flex; height: 100%; align-items: center; }
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink-strong);
  font-family: Cormorant, Georgia, serif;
  font-size: 30px;
  font-weight: 550;
  letter-spacing: 0.03em;
}
.brand img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(74, 60, 72, 0.1);
  border-radius: 12px;
  box-shadow: 0 7px 19px rgba(70, 51, 65, 0.1);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
  color: #655a63;
  font-size: 13px;
  font-weight: 600;
}
.desktop-nav a, .footer-links a { transition: color 160ms ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible, .footer-links a:hover, .footer-links a:focus-visible { color: #a25d7e; }
.header-download {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-left: 28px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent-gradient);
  box-shadow: 0 9px 24px rgba(180, 55, 125, 0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.header-download:hover, .header-download:focus-visible { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(180, 55, 125, 0.28); }
.menu-toggle, .mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--rose);
}
.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -35vw;
  width: 62vw;
  height: 62vw;
  border: 1px solid rgba(104, 91, 103, 0.1);
  border-radius: 50%;
  content: "";
}
.hero-glow {
  position: absolute;
  top: 10%;
  left: 45%;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.9) 0 34%, rgba(223, 180, 215, 0.34) 51%, rgba(247, 238, 243, 0) 72%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  padding: 66px 0 44px;
}
.hero-copy { max-width: 660px; }
.hero h1 { max-width: 9.4ch; font-size: clamp(66px, 7vw, 96px); line-height: 0.9; }
.hero-lead { max-width: 570px; margin: 29px 0 0; color: #6d626b; font-size: 19px; line-height: 1.7; }
.store-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.hero-actions { margin-top: 34px; }
.store-badge-link { display: inline-flex; align-items: center; line-height: 0; transition: transform 160ms ease, filter 160ms ease; }
.store-badge-link:hover, .store-badge-link:focus-visible { transform: translateY(-2px); filter: brightness(1.08); }
.store-badge-link img { width: auto; height: 51px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin: 23px 0 0; color: #80747d; font-size: 13px; }
.hero-note span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(196, 61, 130, 0.12); }
.hero-visual { position: relative; align-self: end; min-height: 650px; }
.phone {
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(57, 48, 56, 0.92);
  border-radius: 36px;
  background: var(--rose);
  box-shadow: var(--shadow);
}
.phone img { width: 100%; height: auto; }
.hero-visual .phone { position: absolute; bottom: -88px; width: 292px; }
.phone-back { right: 202px; transform: rotate(-7deg); opacity: 0.92; }
.phone-front { right: 6px; z-index: 2; transform: rotate(4deg); }

.intro { background: var(--white); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr); align-items: end; gap: 70px; }
.section-heading h2, .showcase h2, .privacy-section h2, .download-section h2 { font-size: clamp(48px, 5.5vw, 74px); line-height: 0.96; }
.section-heading > p { max-width: 460px; margin: 0 0 4px; color: var(--muted); font-size: 17px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 66px; }
.feature-card {
  position: relative;
  min-height: 322px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--blush);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.feature-card::before {
  position: absolute;
  top: -1px;
  right: 24px;
  left: 24px;
  height: 3px;
  border-radius: 0 0 99px 99px;
  background: var(--accent-gradient);
  content: "";
  opacity: 0.72;
}
.feature-card:nth-child(2) { background: #f6eff7; }
.feature-card:nth-child(3) { background: #fbf1f6; }
.feature-card:nth-child(4) { background: #f1eef9; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(70, 51, 65, 0.08); }
.feature-number { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: var(--accent-gradient); color: var(--white); font-size: 10px; font-weight: 750; letter-spacing: 0.06em; box-shadow: 0 8px 18px rgba(180, 55, 125, 0.18); }
.feature-card svg { width: 45px; height: 45px; margin: 35px 0 30px; fill: none; stroke: var(--accent-dark); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.feature-card h3 { margin: 0; color: var(--ink-strong); font-size: 20px; font-weight: 700; }
.feature-card p { margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.effects-section { overflow: hidden; background: #f8f2f6; }
.effects-heading { align-items: end; }
.effects-grid { display: grid; width: min(100%, 1000px); grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin: 60px auto 0; }
.effect-card {
  overflow: hidden;
  border: 1px solid rgba(116, 73, 105, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 54px rgba(91, 53, 82, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.effect-card:hover { transform: translateY(-4px); box-shadow: 0 25px 62px rgba(91, 53, 82, 0.12); }
.effect-compare { position: relative; display: grid; height: 310px; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: hidden; background: var(--rose-deep); }
.effect-half { position: relative; min-width: 0; overflow: hidden; }
.effect-half + .effect-half { border-left: 2px solid rgba(255, 255, 255, 0.88); }
.effect-half img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; transition: transform 320ms ease; }
.effect-card:hover .effect-half img { transform: scale(1.018); }
.effect-label { position: absolute; top: 15px; left: 15px; padding: 6px 10px; border: 1px solid rgba(255, 255, 255, 0.58); border-radius: 999px; background: rgba(45, 34, 42, 0.66); color: var(--white); font-size: 10px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; backdrop-filter: blur(8px); }
.effect-label-after { right: 15px; left: auto; background: rgba(157, 47, 106, 0.82); }
.effect-arrow { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; width: 50px; height: 50px; place-items: center; border: 6px solid rgba(255, 255, 255, 0.5); border-radius: 50%; background: var(--accent-gradient); color: var(--white); font-size: 21px; line-height: 1; box-shadow: 0 11px 28px rgba(86, 42, 81, 0.2); transform: translate(-50%, -50%); background-clip: padding-box; }
.effect-copy { padding: 21px 23px 23px; }
.effect-copy > span { color: var(--accent-dark); font-size: 10px; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }
.effect-copy h3 { margin: 5px 0 0; color: var(--ink-strong); font-size: 21px; font-weight: 750; }
.effect-copy p { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.showcase { overflow: hidden; background: var(--cream); }
.showcase-inner { display: grid; grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1fr); align-items: center; gap: clamp(70px, 9vw, 130px); }
.showcase-copy { max-width: 490px; }
.showcase-copy > p:not(.eyebrow) { margin: 27px 0 0; color: var(--muted); font-size: 17px; }
.simple-list { display: grid; gap: 0; margin: 36px 0 0; padding: 0; list-style: none; }
.simple-list li { position: relative; padding: 15px 0 15px 30px; border-top: 1px solid var(--line); color: #625760; font-size: 14px; font-weight: 600; }
.simple-list li:last-child { border-bottom: 1px solid var(--line); }
.simple-list li::before { position: absolute; top: 22px; left: 5px; width: 7px; height: 7px; border-radius: 50%; background: #ad7890; content: ""; }
.screen-pair { position: relative; min-height: 690px; }
.screen-phone { position: absolute; bottom: -100px; width: 310px; border-color: #4b424a; background: #4b424a; isolation: isolate; backface-visibility: hidden; }
.screen-phone img { width: calc(100% + 4px); max-width: none; margin: -2px; }
.screen-phone-one { left: 0; transform: rotate(-4deg); }
.screen-phone-two { right: 5px; z-index: 2; transform: rotate(4deg); }

.privacy-section { background: var(--rose); }
.privacy-inner { display: grid; grid-template-columns: minmax(410px, 0.95fr) minmax(360px, 0.75fr); align-items: center; gap: clamp(65px, 9vw, 130px); }
.privacy-art { position: relative; display: grid; width: min(100%, 510px); min-height: 610px; place-items: center; justify-self: center; }
.privacy-art::before {
  position: absolute;
  inset: 5% 0 3%;
  border-radius: 46% 54% 52% 48% / 40% 42% 58% 60%;
  background: linear-gradient(145deg, rgba(215, 65, 134, 0.24), rgba(119, 88, 215, 0.2));
  content: "";
  transform: rotate(-5deg);
}
.privacy-art::after {
  position: absolute;
  top: 4%;
  right: 3%;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(196, 61, 130, 0.24);
  border-radius: 50%;
  content: "";
}
.privacy-diagram { position: relative; z-index: 1; width: min(94%, 470px); }
.privacy-panel {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid rgba(116, 73, 105, 0.13);
  border-radius: 30px;
  background: rgba(255, 252, 254, 0.93);
  box-shadow: 0 28px 74px rgba(70, 51, 65, 0.16);
}
.privacy-panel::before { position: absolute; top: 0; right: 0; left: 0; height: 4px; background: var(--accent-gradient); content: ""; }
.privacy-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 3px 2px 19px; }
.privacy-panel-title { display: flex; align-items: center; gap: 9px; color: var(--ink-strong); font-size: 13px; font-weight: 800; letter-spacing: 0.02em; }
.privacy-panel-title i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(196, 61, 130, 0.1); }
.privacy-panel-shield { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 13px; background: var(--accent-gradient); color: var(--white); box-shadow: 0 9px 22px rgba(167, 55, 131, 0.2); }
.privacy-panel-shield svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.privacy-diagram-list { display: grid; gap: 11px; }
.privacy-diagram-row { display: grid; grid-template-columns: 46px minmax(0, 1fr) auto; align-items: center; gap: 13px; padding: 14px; border: 1px solid rgba(91, 70, 87, 0.09); border-radius: 18px; background: var(--white); box-shadow: 0 7px 20px rgba(80, 55, 73, 0.045); }
.privacy-row-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; background: #f8e8f0; color: var(--accent-dark); }
.privacy-row-icon-ai { background: #f1ebfb; color: var(--violet); }
.privacy-row-icon-export { background: #eee9f5; color: #675275; }
.privacy-row-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.privacy-diagram-row small { display: block; margin-bottom: 2px; color: #aa788f; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.privacy-diagram-row strong { display: block; color: var(--ink-strong); font-size: 13px; line-height: 1.35; }
.privacy-diagram-row p { margin: 3px 0 0; color: var(--muted); font-size: 10.5px; line-height: 1.45; }
.privacy-state { padding: 6px 9px; border-radius: 999px; background: #f8e8f0; color: var(--accent-dark); font-size: 9px; font-weight: 800; white-space: nowrap; }
.privacy-state-choice { background: #eee9fb; color: #6950b8; }
.privacy-state-clean { background: #eee9f1; color: #63536a; }
.privacy-promise { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 12px; margin-top: 16px; padding: 16px; border-radius: 18px; background: linear-gradient(120deg, #5b4658, #704fad); color: var(--white); }
.privacy-promise > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 13px; background: rgba(255, 255, 255, 0.1); }
.privacy-promise svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.privacy-promise strong { display: block; font-size: 12px; }
.privacy-promise p { margin: 2px 0 0; color: rgba(255, 255, 255, 0.72); font-size: 10px; line-height: 1.45; }
.privacy-seal {
  position: absolute;
  right: -52px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 15px 34px rgba(132, 50, 111, 0.24);
  color: var(--white);
  font-family: Cormorant, Georgia, serif;
  font-size: 20px;
  line-height: 1.05;
  text-align: center;
  transform: rotate(7deg);
}
.privacy-lead { margin: 27px 0 0; color: #6c6069; font-size: 17px; }
.privacy-list { display: grid; gap: 0; margin: 33px 0 28px; }
.privacy-list div { display: grid; grid-template-columns: 140px 1fr; gap: 20px; padding: 17px 0; border-top: 1px solid var(--line); }
.privacy-list div:last-child { border-bottom: 1px solid var(--line); }
.privacy-list dt { color: var(--ink-strong); font-size: 13px; font-weight: 750; }
.privacy-list dd { margin: 0; color: var(--muted); font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--plum); font-size: 14px; font-weight: 750; }
.text-link span { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--accent-gradient); color: var(--white); }
.text-link:hover, .text-link:focus-visible { color: var(--accent-dark); }

.download-section { position: relative; overflow: hidden; padding: 112px 0; background: linear-gradient(125deg, #5c4758 0%, #743e68 48%, #704fc1 100%); color: var(--white); }
.download-section::after { position: absolute; right: -150px; bottom: -320px; width: 620px; height: 620px; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50%; content: ""; }
.download-inner { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.download-section .eyebrow { color: #f7dbea; }
.download-section .eyebrow::before { background: linear-gradient(90deg, #ff8fbd, #c2a8ff); }
.download-section h2, .download-section h2 em { color: var(--white); }
.download-section h2 em { background: none; -webkit-text-fill-color: currentColor; }
.download-section .store-buttons { justify-content: flex-end; padding-bottom: 7px; }

.site-footer { padding: 76px 0 30px; background: #292329; color: #d8ced5; }
.site-footer .brand { color: var(--white); }
.site-footer .brand img { border-color: rgba(255, 255, 255, 0.1); }
.footer-main { display: grid; grid-template-columns: 1fr 1.35fr; gap: 90px; padding-bottom: 62px; }
.footer-brand p { max-width: 280px; margin: 18px 0 0; color: #a89ca5; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links strong { margin-bottom: 7px; color: var(--white); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-links a { color: #bfb3bb; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); color: #958991; font-size: 11px; }
.store-trademarks { margin-top: 14px; color: #716770; font-size: 10px; }

.reveal-enabled [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease var(--reveal-delay, 0ms), transform 650ms ease var(--reveal-delay, 0ms); }
.reveal-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Legal pages */
.legal-page { background: var(--white); }
.legal-hero { padding: 92px 0 74px; background: var(--rose); }
.legal-hero h1 { max-width: none; font-size: clamp(58px, 7vw, 88px); line-height: 0.95; }
.legal-hero p:last-child { max-width: 660px; margin: 24px 0 0; color: #71666e; font-size: 17px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: space-between; gap: 80px; padding-top: 78px; padding-bottom: 110px; }
.legal-aside { position: sticky; top: calc(var(--header-height) + 32px); display: flex; height: max-content; flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px; border-radius: 18px; background: var(--blush); }
.legal-aside strong { margin-bottom: 4px; color: var(--ink-strong); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.legal-aside a { color: var(--muted); font-size: 13px; }
.legal-aside a:hover, .legal-aside a:focus-visible, .legal-aside a[aria-current="page"] { color: #9a5475; }
.legal-content { color: #625860; font-size: 15px; line-height: 1.78; }
.legal-content > :first-child { margin-top: 0; }
.legal-content h2 { margin: 48px 0 14px; color: var(--ink-strong); font-family: Manrope, Arial, sans-serif; font-size: 21px; font-weight: 750; letter-spacing: -0.02em; }
.legal-content h3 { margin: 28px 0 10px; color: var(--ink-strong); font-size: 16px; }
.legal-content p, .legal-content ul { margin: 0 0 18px; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: #90506f; text-decoration: underline; text-underline-offset: 3px; }
.legal-note { padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--blush); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 20px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) 420px; }
  .phone-back { right: 150px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { min-height: 280px; }
  .showcase-inner { grid-template-columns: minmax(270px, 0.62fr) minmax(470px, 1fr); gap: 58px; }
  .screen-phone { width: 278px; }
}

@media (max-width: 980px) {
  .desktop-nav, .header-download { display: none; }
  .menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
  }
  .menu-toggle span { width: 22px; height: 1px; background: var(--ink-strong); transition: transform 160ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 45;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    padding: 28px 24px 48px;
    transform: translateY(-110%);
    background: var(--blush);
    visibility: hidden;
    flex-direction: column;
    transition: transform 220ms ease, visibility 220ms ease;
  }
  .mobile-menu.is-open { transform: translateY(0); visibility: visible; }
  .mobile-menu a { padding: 15px 4px; border-bottom: 1px solid var(--line); color: var(--ink-strong); font-family: Cormorant, Georgia, serif; font-size: 30px; line-height: 1.2; }
  .hero-inner { grid-template-columns: minmax(0, 0.9fr) 360px; }
  .hero h1 { font-size: clamp(58px, 7.7vw, 74px); }
  .hero-visual .phone { width: 255px; }
  .phone-back { right: 115px; }
  .showcase-inner { grid-template-columns: 1fr; }
  .showcase-copy { max-width: 650px; }
  .screen-pair { width: min(100%, 610px); justify-self: center; }
  .privacy-inner { grid-template-columns: minmax(330px, 0.8fr) minmax(320px, 0.75fr); gap: 70px; }
  .privacy-art { min-height: 560px; }
  .download-inner { align-items: flex-start; flex-direction: column; }
  .download-section .store-buttons { justify-content: flex-start; }
}

@media (max-width: 760px) {
  :root { --header-height: 70px; }
  .section-inner, .header-inner, .hero-inner { width: min(calc(100% - 32px), var(--max-width)); }
  .section { padding: 88px 0; }
  .brand { font-size: 27px; }
  .brand img { width: 40px; height: 40px; border-radius: 11px; }
  .hero { min-height: auto; }
  .hero-inner { display: flex; min-height: 0; padding: 70px 0 0; flex-direction: column; align-items: stretch; gap: 52px; }
  .hero h1 { max-width: 10ch; font-size: clamp(56px, 17vw, 80px); }
  .hero-lead { font-size: 17px; }
  .hero-visual { width: min(100%, 430px); min-height: 550px; align-self: center; }
  .hero-visual .phone { bottom: -78px; width: min(67vw, 270px); }
  .phone-back { right: auto; left: 0; }
  .phone-front { right: 0; }
  .store-badge-link img { height: 48px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading h2, .showcase h2, .privacy-section h2, .download-section h2 { font-size: clamp(46px, 14vw, 66px); }
  .effects-section h2 { font-size: clamp(43px, 12vw, 58px); }
  .feature-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .feature-card { min-height: 0; }
  .feature-card svg { margin: 34px 0 24px; }
  .effects-grid { width: min(100%, 520px); grid-template-columns: 1fr; margin-top: 46px; }
  .effect-compare { height: min(78vw, 330px); }
  .showcase-inner { gap: 50px; }
  .screen-pair { min-height: 570px; }
  .screen-phone { bottom: -88px; width: min(67vw, 272px); }
  .screen-phone-one { left: -3px; }
  .screen-phone-two { right: -3px; }
  .privacy-inner { grid-template-columns: 1fr; gap: 68px; }
  .privacy-art { width: min(100%, 500px); min-height: 560px; }
  .privacy-diagram { width: min(94%, 460px); }
  .privacy-seal { right: -22px; width: 108px; height: 108px; font-size: 17px; }
  .privacy-list div { grid-template-columns: 1fr; gap: 5px; }
  .download-section { padding: 88px 0; }
  .footer-main { grid-template-columns: 1fr; gap: 52px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-hero { padding: 70px 0 58px; }
  .legal-layout { grid-template-columns: 1fr; gap: 45px; padding-top: 50px; padding-bottom: 82px; }
  .legal-aside { position: static; }
}

@media (max-width: 430px) {
  .hero-actions, .store-buttons { align-items: flex-start; flex-direction: column; }
  .hero-visual { min-height: 490px; }
  .hero-visual .phone { width: 61vw; border-width: 6px; border-radius: 27px; }
  .screen-pair { min-height: 500px; }
  .screen-phone { width: 62vw; border-width: 6px; border-radius: 27px; }
  .effects-grid { width: min(100%, 340px); }
  .effect-compare { height: min(78vw, 300px); }
  .privacy-art { display: flex; min-height: 600px; align-items: stretch; justify-content: center; flex-direction: column; }
  .privacy-diagram { width: 100%; }
  .privacy-panel { padding: 19px; border-radius: 25px; }
  .privacy-diagram-row { grid-template-columns: 40px minmax(0, 1fr); gap: 10px 12px; padding: 12px; }
  .privacy-row-icon { width: 38px; height: 38px; border-radius: 12px; }
  .privacy-state { grid-column: 2; justify-self: start; margin-top: -3px; }
  .privacy-seal { position: relative; right: auto; bottom: auto; display: inline-flex; width: auto; height: auto; align-items: center; align-self: flex-end; margin: -3px 15px 0 0; padding: 9px 14px; border-radius: 999px; font-family: Manrope, Arial, sans-serif; font-size: 10px; font-weight: 750; line-height: 1; transform: none; }
  .privacy-seal br { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
