@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #09080d;
  --ink-soft: #13111a;
  --text: #fcf9fc;
  --muted: #b7b0bf;
  --pink: #ed5a91;
  --pink-bright: #ff77a6;
  --blush: #ffd7e5;
  --lavender: #a58be4;
  --line: rgba(255,255,255,.11);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--text);
  color: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 48px, 1400px);
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}
.brand { position: relative; overflow: hidden; width: 270px; height: 72px; }
.brand img { width: 270px; height: 72px; max-width: none; object-fit: cover; object-position: 50% 46%; }
.desktop-nav { display: flex; gap: 36px; align-items: center; }
.desktop-nav a {
  color: #a9a3b0;
  font-size: 12px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--text); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; }
.lang-button {
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #77717e;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .1em;
}
.lang-button.is-active { color: #fff; background: rgba(165,139,228,.22); box-shadow: inset 0 0 0 1px rgba(165,139,228,.48); }
.header-cta {
  padding: 13px 20px;
  border: 1px solid rgba(237,90,145,.34);
  border-radius: 999px;
  color: #ffdce8;
  background: rgba(237,90,145,.09);
  font-size: 12px;
  letter-spacing: .06em;
  transition: transform .2s ease, background .2s ease;
}
.header-cta:hover { transform: translateY(-2px); background: rgba(237,90,145,.16); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 860px;
  overflow: hidden;
  padding: 180px max(24px, calc((100vw - 1320px)/2)) 92px;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  background:
    radial-gradient(circle at 76% 56%, rgba(237,90,145,.14), transparent 34%),
    radial-gradient(circle at 42% 12%, rgba(165,139,228,.08), transparent 24%),
    linear-gradient(180deg, #09080d 0%, #0c0910 72%, #100b11 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.06) 0 1px, transparent 1.5px);
  background-size: 47px 53px, 61px 67px;
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(20px); }
.hero-glow-one { width: 400px; height: 400px; right: 4%; top: 25%; background: rgba(237,90,145,.08); }
.hero-glow-two { width: 260px; height: 260px; left: 34%; bottom: 2%; background: rgba(165,139,228,.06); }
.hero-copy { position: relative; z-index: 5; max-width: 620px; }
.eyebrow {
  margin: 0 0 28px;
  color: #b8a1f4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
}
h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 6.8vw, 104px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.04em;
}
h1 em { color: #ef82a9; font-weight: 400; }
html[lang="el"] h1 { font-size: clamp(56px, 5.6vw, 88px); }
.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: #c5bec9;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 62px; display: inline-flex; align-items: center; justify-content: center; border-radius: 18px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { gap: 13px; min-width: 188px; padding: 10px 22px; color: white; background: linear-gradient(135deg, #ed5a91, #d9487e); box-shadow: 0 14px 36px rgba(237,90,145,.22); }
.button-primary small { display: block; margin-bottom: 1px; font-size: 9px; line-height: 1; letter-spacing: .16em; }
.button-primary strong { font-size: 18px; line-height: 1; }
.play-mark { font-size: 20px; }
.button-secondary { padding: 0 24px; border: 1px solid var(--line); color: #d8d2db; background: rgba(255,255,255,.025); }
.button-secondary:hover { background: rgba(255,255,255,.06); }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 32px 0 0; padding: 0; list-style: none; color: #837d89; font-size: 12px; }
.trust-list li::before { content: "✦"; margin-right: 8px; color: #d66e95; }

.hero-showcase { position: relative; height: 640px; display: grid; place-items: center; perspective: 1400px; }
.orbit { position: absolute; border: 1px solid rgba(239,130,169,.18); border-radius: 50%; transform: rotate(-18deg); }
.orbit-one { width: 680px; height: 350px; }
.orbit-two { width: 540px; height: 560px; border-color: rgba(165,139,228,.12); transform: rotate(26deg); }
.phone {
  position: absolute;
  overflow: hidden;
  width: 288px;
  aspect-ratio: 9/16;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 42px;
  background: linear-gradient(145deg, #342d38, #0c0a0f 42%, #25202a);
  box-shadow: 0 50px 110px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.08);
}
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 35px; }
.phone-main { z-index: 5; transform: translateY(18px) rotate(-2deg); }
.phone-speaker { position: absolute; z-index: 2; top: 17px; left: 50%; transform: translateX(-50%); width: 72px; height: 17px; border-radius: 999px; background: #131117; }
.phone-back { width: 238px; opacity: .42; filter: saturate(.75); }
.phone-left { transform: translate(-218px, 56px) rotate(-11deg); }
.phone-right { transform: translate(220px, 42px) rotate(10deg); }
.floating-note { position: absolute; z-index: 7; padding: 11px 15px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #fbeef3; background: rgba(27,20,28,.78); box-shadow: 0 16px 32px rgba(0,0,0,.28); backdrop-filter: blur(12px); font-size: 11px; letter-spacing: .05em; }
.note-one { left: 3%; top: 26%; }
.note-two { right: 0; bottom: 21%; }
.section-shell { width: min(100% - 48px, 1280px); margin-inline: auto; }
h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}
h2 em { color: var(--pink); font-weight: 400; }
html[lang="el"] h2 { font-size: clamp(48px, 5vw, 76px); }
.eyebrow-pink { color: #d94f83; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

.manifesto {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: #17131b;
  background:
    radial-gradient(circle at 10% 18%, rgba(255,194,215,.32), transparent 25%),
    linear-gradient(180deg, #fffafd 0%, #fff7fa 100%);
}
.manifesto::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: 60px;
  border: 1px solid rgba(237,90,145,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(237,90,145,.025), 0 0 0 140px rgba(237,90,145,.018);
}
.manifesto-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(60px, 10vw, 150px); align-items: end; }
.manifesto-copy { padding-bottom: 3px; color: #6e6771; line-height: 1.7; }
.manifesto-copy p { margin: 0; }
.manifesto-copy p + p { margin-top: 24px; }
.manifesto-copy .large-copy { color: #29232d; font-size: clamp(20px, 2vw, 28px); line-height: 1.45; }
.benefit-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 16px; margin-top: 96px; }
.benefit-card { min-height: 310px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid #eee3e9; border-radius: 30px; background: rgba(255,255,255,.76); box-shadow: 0 22px 50px rgba(74,42,56,.05); }
.benefit-card h3 { margin: 0 0 14px; font-size: 23px; letter-spacing: -.025em; }
.benefit-card p { margin: 0; color: #736c76; line-height: 1.65; }
.benefit-number { color: #d04d7d; font-family: var(--serif); font-size: 24px; }
.benefit-featured { color: white; border-color: transparent; background: linear-gradient(150deg, #e9548c 0%, #c93e74 100%); box-shadow: 0 24px 50px rgba(213,67,120,.2); }
.benefit-featured p { color: #ffe4ed; }
.benefit-featured .benefit-number { color: #ffd6e5; }

.app-gallery { position: relative; overflow: hidden; padding: 140px 0 160px; background: linear-gradient(180deg, #100b11 0%, #09080d 100%); }
.app-gallery::before { content: ""; position: absolute; width: 600px; height: 600px; left: 50%; top: 38%; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(237,90,145,.1); filter: blur(90px); }
.section-intro { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: end; }
.section-intro > p { max-width: 540px; margin: 0 0 4px auto; color: #ada5b1; font-size: 18px; line-height: 1.75; }
.screen-rail { position: relative; z-index: 2; width: min(1460px, calc(100% - 30px)); margin: 94px auto 0; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 36px); }
.screen-card { width: min(22vw, 272px); margin: 0; }
.screen-card:nth-child(2), .screen-card:nth-child(4), .screen-card:nth-child(6) { transform: translateY(56px); }
.screen-phone { position: relative; overflow: hidden; aspect-ratio: 9/16; padding: 7px; border: 1px solid rgba(255,255,255,.15); border-radius: 38px; background: linear-gradient(145deg,#3b313e,#0d0a0f 50%,#2b232d); box-shadow: 0 35px 70px rgba(0,0,0,.44); }
.screen-phone::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); pointer-events: none; }
.screen-phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 31px; }
.screen-card figcaption { display: flex; align-items: baseline; gap: 13px; margin-top: 19px; }
.screen-card figcaption span { color: #7e6e80; font-size: 11px; letter-spacing: .16em; }
.screen-card figcaption strong { color: #ded8e0; font-size: 13px; font-weight: 500; }

.how-section { padding: 150px 0; color: #17131b; background: #f8f5f7; }
.how-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(70px, 11vw, 160px); align-items: start; }
.how-sticky { position: sticky; top: 80px; }
.how-sticky h2 { font-size: clamp(50px, 5vw, 75px); }
.how-sticky > p:last-child { max-width: 470px; margin: 30px 0 0; color: #756e78; font-size: 18px; line-height: 1.7; }
.step-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #ded7dc; }
.step-list li { display: grid; grid-template-columns: 72px 1fr; gap: 20px; padding: 38px 0 42px; border-bottom: 1px solid #ded7dc; }
.step-list li > span { padding-top: 5px; color: #d84f83; font-family: var(--serif); font-size: 24px; }
.step-list h3 { margin: 0 0 12px; font-size: clamp(23px,2.2vw,32px); letter-spacing: -.025em; }
.step-list p { max-width: 580px; margin: 0; color: #716a75; line-height: 1.7; }

.mumu-section { padding: 52px 0 148px; color: #17131b; background: #f8f5f7; }
.mumu-card { position: relative; overflow: hidden; min-height: 580px; padding: 64px clamp(40px,7vw,100px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; border-radius: 42px; color: #fff; background:
  radial-gradient(circle at 22% 50%, rgba(237,90,145,.22), transparent 30%),
  radial-gradient(circle at 78% 20%, rgba(165,139,228,.1), transparent 25%),
  #111017;
  box-shadow: 0 35px 90px rgba(35,20,29,.18);
}
.mumu-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; bottom: -130px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.018); }
.mumu-art { position: relative; min-height: 410px; display: grid; place-items: center; }
.mumu-art img { position: relative; z-index: 3; width: min(100%, 330px); image-rendering: pixelated; filter: drop-shadow(0 30px 32px rgba(0,0,0,.32)); }
.mumu-halo { position: absolute; width: 350px; height: 350px; border: 1px solid rgba(255,145,185,.26); border-radius: 50%; box-shadow: 0 0 0 42px rgba(237,90,145,.045), 0 0 80px rgba(237,90,145,.12); }
.mumu-spark { position: absolute; z-index: 4; color: #ffc2d8; font-size: 23px; }
.spark-one { top: 13%; right: 8%; }
.spark-two { left: 5%; bottom: 21%; font-size: 14px; }
.mumu-copy { position: relative; z-index: 2; max-width: 650px; }
.mumu-copy h2 { font-size: clamp(54px, 5.2vw, 82px); }
.mumu-copy > p:last-child { max-width: 600px; margin: 30px 0 0; color: #bdb5c0; font-size: 18px; line-height: 1.75; }

.principles-section { padding: 148px 0; color: #17131b; background: #fffafc; }
.principles-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(70px,10vw,150px); align-items: start; }
.principles-title { position: sticky; top: 80px; }
.principles-title h2 { font-size: clamp(52px, 5vw, 76px); }
.principles-list { border-top: 1px solid #eadfe5; }
.principles-list article { display: grid; grid-template-columns: 50px 1fr; column-gap: 24px; padding: 34px 0 38px; border-bottom: 1px solid #eadfe5; }
.principles-list article > span { grid-row: 1 / span 2; color: #d75283; font-family: var(--serif); font-size: 21px; }
.principles-list h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -.02em; }
.principles-list p { margin: 0; color: #716a75; line-height: 1.7; }

.download-section { position: relative; isolation: isolate; overflow: hidden; min-height: 760px; padding: 120px 24px; display: grid; place-items: center; text-align: center; background:
  radial-gradient(circle at 50% 45%, rgba(237,90,145,.22), transparent 25%),
  radial-gradient(circle at 30% 80%, rgba(165,139,228,.09), transparent 24%),
  #09080d;
}
.download-section::before, .download-section::after { content: ""; position: absolute; z-index: -1; left: 50%; top: 52%; transform: translate(-50%,-50%) rotate(-12deg); width: min(900px,85vw); height: 420px; border: 1px solid rgba(237,90,145,.15); border-radius: 50%; }
.download-section::after { width: min(690px,66vw); height: 680px; transform: translate(-50%,-50%) rotate(32deg); border-color: rgba(165,139,228,.12); }
.download-inner { max-width: 850px; }
.download-icon { width: 92px; height: 92px; margin: 0 auto 34px; border-radius: 24px; box-shadow: 0 20px 45px rgba(237,90,145,.2); }
.download-inner h2 { font-size: clamp(62px,7vw,102px); }
.download-inner > p:not(.eyebrow) { max-width: 600px; margin: 28px auto 0; color: #bdb6c1; font-size: 18px; line-height: 1.7; }
.download-button { margin-top: 36px; }

.site-footer { padding: 72px max(24px,calc((100vw - 1280px)/2)) 28px; color: #9a939e; background: #070609; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-main img { width: 270px; height: 72px; max-width: none; object-fit: cover; object-position: 50% 46%; }
.footer-main p { margin: 0; color: #c5bec8; font-family: var(--serif); font-size: 27px; font-style: italic; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; padding: 34px 0; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.06); color: #625d65; font-size: 11px; letter-spacing: .05em; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero { grid-template-columns: 1fr 480px; }
  .phone { width: 250px; }
  .phone-back { width: 205px; }
  .phone-left { transform: translate(-170px, 52px) rotate(-10deg); }
  .phone-right { transform: translate(170px, 42px) rotate(9deg); }
  .manifesto-grid, .section-intro { gap: 50px; }
  .screen-card { width: min(22vw, 245px); }
  .mumu-card { gap: 46px; }
}

@media (max-width: 820px) {
  .site-header { width: min(100% - 28px, 760px); height: 78px; }
  .brand { width: 190px; height: 58px; }
  .brand img { width: 190px; height: 58px; }
  .header-cta { display: none; }
  .hero { min-height: auto; padding: 132px 22px 70px; grid-template-columns: 1fr; gap: 58px; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-list { justify-content: center; }
  .hero-showcase { height: 550px; }
  .phone { width: 250px; }
  .phone-back { width: 195px; }
  .phone-left { transform: translate(-150px, 56px) rotate(-10deg); }
  .phone-right { transform: translate(150px, 48px) rotate(9deg); }
  .orbit-one { width: 520px; height: 270px; }
  .orbit-two { width: 430px; height: 430px; }
  .section-shell { width: min(100% - 36px, 760px); }
  .manifesto, .app-gallery, .how-section, .principles-section { padding-block: 100px; }
  .manifesto-grid, .section-intro, .how-grid, .principles-grid { grid-template-columns: 1fr; gap: 50px; }
  .manifesto-copy { max-width: 650px; }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 70px; }
  .benefit-card { min-height: 240px; }
  .section-intro > p { margin-left: 0; }
  .screen-rail { overflow-x: auto; justify-content: flex-start; gap: 20px; width: 100%; padding: 0 24px 50px; scroll-snap-type: x mandatory; }
  .screen-card { flex: 0 0 250px; width: 250px; scroll-snap-align: center; }
  .screen-card:nth-child(2), .screen-card:nth-child(4), .screen-card:nth-child(6) { transform: none; }
  .how-sticky, .principles-title { position: static; }
  .mumu-section { padding: 20px 0 100px; }
  .mumu-card { min-height: auto; padding: 60px 35px; grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .mumu-art { min-height: 330px; }
  .mumu-copy { margin: 0 auto; }
  .footer-main { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 540px) {
  .hero { padding-inline: 18px; }
  h1 { font-size: clamp(57px, 17vw, 78px); }
  html[lang="el"] h1 { font-size: clamp(48px, 13vw, 65px); }
  .hero-lead { font-size: 16px; line-height: 1.6; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-list { font-size: 11px; gap: 9px 14px; }
  .hero-showcase { height: 470px; margin-inline: -18px; }
  .phone { width: 218px; border-radius: 34px; }
  .phone img { border-radius: 28px; }
  .phone-back { width: 170px; }
  .phone-left { transform: translate(-116px, 46px) rotate(-10deg); }
  .phone-right { transform: translate(116px, 38px) rotate(9deg); }
  .orbit-one { width: 420px; }
  .orbit-two { width: 360px; height: 360px; }
  .floating-note { font-size: 9px; }
  .note-one { left: 2%; top: 23%; }
  .note-two { right: 1%; bottom: 14%; }
  .section-shell { width: min(100% - 32px, 508px); }
  h2 { font-size: clamp(48px,14vw,68px); }
  .manifesto, .app-gallery, .how-section, .principles-section { padding-block: 78px; }
  .benefit-grid { margin-top: 50px; }
  .benefit-card { min-height: 220px; padding: 25px; border-radius: 24px; }
  .screen-rail { margin-top: 58px; padding-inline: 18px; }
  .screen-card { flex-basis: 225px; width: 225px; }
  .step-list li { grid-template-columns: 48px 1fr; gap: 12px; }
  .mumu-section { padding-bottom: 78px; }
  .mumu-card { width: calc(100% - 24px); padding: 45px 22px; border-radius: 28px; }
  .mumu-art { min-height: 270px; }
  .mumu-art img { width: 230px; }
  .mumu-halo { width: 260px; height: 260px; }
  .mumu-copy h2, .how-sticky h2, .principles-title h2 { font-size: clamp(46px,13vw,62px); }
  .principles-list article { grid-template-columns: 40px 1fr; gap: 14px; }
  .download-section { min-height: 680px; padding-inline: 18px; }
  .download-section::before { width: 150vw; height: 330px; }
  .download-section::after { width: 115vw; height: 520px; }
  .download-inner h2 { font-size: clamp(58px,17vw,78px); }
  .footer-main p { font-size: 23px; }
  .footer-links { gap: 18px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .phone-main { animation: float 6s ease-in-out infinite; }
  .floating-note { animation: noteFloat 5s ease-in-out infinite; }
  .note-two { animation-delay: -2.2s; }
  @keyframes float { 0%,100% { transform: translateY(18px) rotate(-2deg); } 50% { transform: translateY(3px) rotate(-1deg); } }
  @keyframes noteFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -8px; } }
}
