
:root{
  --bg:#050505;
  --bg-soft:#0b0b0c;
  --surface:#111214;
  --text:#f5f5f7;
  --muted:#a1a1a6;
  --line:rgba(255,255,255,.11);
  --glass:rgba(20,20,22,.72);
  --radius:34px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% -10%,rgba(255,255,255,.055),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.015),transparent 22%);
  z-index:-1;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input{font:inherit}

.site-header{
  position:fixed;
  top:14px;left:50%;
  transform:translateX(-50%);
  z-index:100;
  width:min(1020px,calc(100% - 28px));
  height:52px;
  padding:6px 8px 6px 10px;
  border:1px solid var(--line);
  border-radius:18px;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(15,15,17,.67);
  backdrop-filter:blur(28px) saturate(160%);
  -webkit-backdrop-filter:blur(28px) saturate(160%);
  box-shadow:0 8px 36px rgba(0,0,0,.20);
}
.brand,.footer-brand{
  display:flex;align-items:center;gap:9px;
  font-size:.95rem;font-weight:650;letter-spacing:-.02em;
}
.brand img,.footer-brand img{width:30px;height:30px;border-radius:9px}
.nav{display:flex;gap:3px;align-items:center}
.nav a{
  padding:9px 12px;
  border-radius:12px;
  font-size:.82rem;
  color:#d2d2d7;
  transition:background .2s,color .2s;
}
.nav a:hover{background:rgba(255,255,255,.06);color:#fff}
.nav-pill{background:rgba(255,255,255,.08)}

main{overflow:hidden}
.wrap{width:min(1160px,calc(100% - 32px));margin:0 auto}

.hero{
  width:min(1160px,calc(100% - 32px));
  margin:0 auto;
  min-height:100svh;
  padding:150px 0 90px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}
.eyebrow{
  margin:0 0 18px;
  color:#86868b;
  font-size:.78rem;
  font-weight:650;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero h1,.section-heading h2,.about h2,.contact-cta h2{
  margin:0;
  letter-spacing:-.064em;
  line-height:.94;
}
.hero h1{
  max-width:1020px;
  font-size:clamp(4rem,9.6vw,8.4rem);
  font-weight:720;
}
.hero h1 span{
  background:linear-gradient(90deg,#f5f5f7 0%,#a8b8c2 52%,#4f7f96 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{
  max-width:760px;
  margin:30px auto 0;
  color:var(--muted);
  font-size:clamp(1.08rem,2vw,1.36rem);
  line-height:1.55;
  letter-spacing:-.02em;
}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:34px}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:0 19px;
  border-radius:999px;
  font-size:.92rem;
  font-weight:650;
  transition:transform .2s ease,opacity .2s ease,background .2s ease;
}
.button:hover{transform:translateY(-1px)}
.primary{background:#f5f5f7;color:#0a0a0a}
.ghost{border:1px solid var(--line);background:rgba(255,255,255,.035)}
.light{background:#f5f5f7;color:#050505}

.hero-mark{
  margin-top:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  perspective:1200px;
}
.hero-mark img{
  width:clamp(210px,27vw,350px);
  border-radius:29%;
  box-shadow:0 50px 130px rgba(0,0,0,.55);
  animation:floatMark 7s ease-in-out infinite;
}
@keyframes floatMark{
  0%,100%{transform:translateY(0) rotateX(0) rotateY(0)}
  50%{transform:translateY(-10px) rotateX(2deg) rotateY(-2deg)}
}

.apps-section{
  width:min(1280px,calc(100% - 20px));
  margin:0 auto;
  padding:40px 0 130px;
}
.section-heading{
  width:min(1160px,calc(100% - 22px));
  margin:0 auto 42px;
  text-align:center;
}
.section-heading h2{
  font-size:clamp(3rem,6vw,5.8rem);
  font-weight:700;
}
.section-heading p{margin-inline:auto}

.app-card{
  min-height:86svh;
  margin:18px 0;
  border-radius:44px;
  overflow:hidden;
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  isolation:isolate;
  opacity:.01;
  transform:translateY(36px) scale(.99);
  transition:opacity .8s cubic-bezier(.2,.7,.2,1),transform .9s cubic-bezier(.2,.7,.2,1);
}
.app-card.visible{opacity:1;transform:none}
.app-card::after{
  content:"";
  position:absolute;inset:0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
  border-radius:inherit;
  pointer-events:none;
}
.app-copy{
  padding:clamp(38px,6vw,78px);
  z-index:2;
  align-self:center;
}
.app-badge{
  display:flex;align-items:center;gap:14px;
  margin-bottom:34px;
}
.app-badge img{
  width:66px;height:66px;
  object-fit:cover;
  border-radius:19px;
  box-shadow:0 16px 28px rgba(0,0,0,.26);
}
.app-badge span{
  display:block;
  margin-bottom:4px;
  color:rgba(255,255,255,.58);
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.app-badge strong{font-size:1.24rem;letter-spacing:-.02em}
.availability-ribbon{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#d9ff32;
  background:rgba(234,255,40,.1);
  border:1px solid rgba(234,255,40,.22);
  border-radius:999px;
  padding:8px 12px;
  font-size:.78rem;
  font-weight:720;
  margin-bottom:18px;
}
.availability-ribbon i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#eaff28;
  box-shadow:0 0 18px rgba(234,255,40,.8);
}
.app-card h3{
  margin:0 0 22px;
  max-width:660px;
  font-size:clamp(3.3rem,6.8vw,6.7rem);
  line-height:.91;
  letter-spacing:-.065em;
  font-weight:720;
}
.app-card p{
  max-width:580px;
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:clamp(1rem,1.4vw,1.17rem);
  line-height:1.65;
}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin:24px 0 31px}
.chips span{
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.055);
  padding:8px 11px;
  border-radius:999px;
  font-size:.76rem;
  color:rgba(255,255,255,.78);
}
.text-link{
  display:inline-flex;gap:7px;align-items:center;
  font-size:1rem;font-weight:650;
}
.text-link span{transition:transform .2s}
.text-link:hover span{transform:translateX(4px)}

.app-visual{
  min-height:100%;
  padding:clamp(28px,5vw,74px);
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.app-visual img{
  width:min(420px,82%);
  border-radius:25%;
  box-shadow:0 48px 90px rgba(0,0,0,.42);
  transform:translateZ(0);
}
.app-visual::before{
  content:"";
  position:absolute;
  width:72%;aspect-ratio:1;
  border-radius:50%;
  filter:blur(70px);
  opacity:.34;
  z-index:-1;
}
.faulfit{
  background:
    radial-gradient(circle at 78% 48%,rgba(231,255,41,.16),transparent 26%),
    linear-gradient(145deg,#101010 0%,#1a1a1a 100%);
}
.faulfit .app-visual::before{background:#eaff26}
.hola{
  background:
    radial-gradient(circle at 78% 45%,rgba(255,194,27,.17),transparent 26%),
    linear-gradient(145deg,#11192a 0%,#1a2640 100%);
}
.hola .app-visual::before{background:#ffc21b}
.onceday{
  background:
    radial-gradient(circle at 76% 44%,rgba(255,135,30,.25),transparent 26%),
    linear-gradient(145deg,#1a0a38 0%,#57185d 48%,#c73742 100%);
}
.onceday .app-visual::before{background:#ff8121}

.about{
  width:min(1160px,calc(100% - 32px));
  margin:0 auto;
  padding:130px 0;
  display:grid;
  grid-template-columns:1fr .85fr;
  gap:90px;
  align-items:end;
  border-top:1px solid var(--line);
}
.about h2{font-size:clamp(3.2rem,6vw,5.7rem);font-weight:700}
.about>p{
  margin:0;
  color:var(--muted);
  font-size:clamp(1.12rem,1.7vw,1.35rem);
  line-height:1.7;
  letter-spacing:-.02em;
}
.contact-cta{
  width:min(1160px,calc(100% - 32px));
  margin:0 auto 110px;
  padding:115px 30px;
  text-align:center;
  border-radius:42px;
  background:linear-gradient(180deg,#121214,#0d0d0f);
  border:1px solid var(--line);
}
.contact-cta h2{
  max-width:820px;
  margin:0 auto 30px;
  font-size:clamp(3rem,6vw,5.7rem);
  font-weight:700;
}

footer{
  width:min(1160px,calc(100% - 32px));
  margin:0 auto 28px;
  padding:34px 0 12px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:28px;
  align-items:center;
  color:#86868b;
  font-size:.82rem;
}
.footer-brand{color:#f5f5f7}
.footer-links{display:flex;gap:18px}

.subpage{
  width:min(820px,calc(100% - 32px));
  min-height:calc(100svh - 150px);
  margin:0 auto;
  padding:140px 0 110px;
}
.subpage h1{
  margin:0 0 26px;
  font-size:clamp(4rem,9vw,7.3rem);
  line-height:.92;
  letter-spacing:-.065em;
}
.subpage h2{margin-top:46px;font-size:1.6rem}
.subpage p,.subpage li{color:var(--muted);line-height:1.8}
.notice{
  margin:24px 0;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:17px;
  background:rgba(255,255,255,.035);
  color:#d2d2d7;
}

.product-hero{
  width:min(1160px,calc(100% - 32px));
  min-height:100svh;
  margin:0 auto;
  padding:130px 0 80px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:70px;
}
.product-hero h1{
  margin:0 0 20px;
  font-size:clamp(4.7rem,10vw,9rem);
  line-height:.88;
  letter-spacing:-.075em;
}
.product-hero .lead{margin-left:0;margin-right:0}
.product-icon{
  width:min(440px,90%);
  margin:auto;
  border-radius:25%;
  box-shadow:0 45px 110px rgba(0,0,0,.5);
}
.back{display:inline-block;color:#86868b;margin-bottom:28px}

@media (max-width:860px){
  .nav a:not(.nav-pill){display:none}
  .hero{padding-top:125px}
  .hero-mark{margin-top:52px}
  .app-card{grid-template-columns:1fr;min-height:auto}
  .app-copy{padding-bottom:20px}
  .app-visual{min-height:390px;padding-top:20px}
  .app-visual img{width:260px}
  .about{grid-template-columns:1fr;gap:32px;padding:90px 0}
  .product-hero{grid-template-columns:1fr;padding-top:125px}
  .product-icon{width:280px}
  footer{grid-template-columns:1fr;gap:16px}
  .footer-links{flex-wrap:wrap}
}
@media (max-width:560px){
  .site-header{height:48px}
  .brand span{font-size:.9rem}
  .brand img{width:28px;height:28px}
  .nav-pill{padding:8px 10px!important}
  .hero h1{font-size:clamp(3.65rem,17vw,5.6rem)}
  .lead{font-size:1.02rem}
  .app-card{border-radius:30px}
  .app-card h3{font-size:clamp(3rem,15vw,4.8rem)}
  .app-copy{padding:38px 24px 18px}
  .app-visual{min-height:330px}
  .contact-cta{padding:80px 22px}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .hero-mark img{animation:none}
  .app-card{opacity:1;transform:none;transition:none}
}

/* ---------- faul.fit product page ---------- */
.ff-page{background:#000}
.ff-page .site-header{background:rgba(18,18,18,.72)}
.ff-hero{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto;
  min-height:100svh;
  padding:132px 0 80px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:72px;
  position:relative;
}
.ff-kicker{
  display:flex;align-items:center;gap:12px;margin-bottom:25px;
  color:#f5f5f7;font-weight:650;font-size:1.04rem;
}
.ff-kicker img{width:52px;height:52px;border-radius:15px;object-fit:cover}
.ff-hero h1{
  font-size:clamp(4.8rem,10vw,9rem);
  line-height:.84;
  letter-spacing:-.078em;
  margin:0;
  font-weight:760;
}
.ff-accent{color:#eaff28}
.ff-sub{
  font-size:clamp(1.18rem,2vw,1.55rem);
  line-height:1.5;
  color:#a1a1a6;
  max-width:650px;
  margin:31px 0 0;
  letter-spacing:-.025em;
}
.ff-store-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:32px;align-items:center}
.appstore-badge{
  display:inline-flex;
  width:180px;
  max-width:100%;
  line-height:0;
}
.appstore-badge img{display:block;width:100%;height:auto}
.final-store-badge{margin-top:14px}
.ff-note{font-size:.8rem;color:#6e6e73}
.android-note{
  margin-top:18px;
  display:inline-flex;
  flex-direction:column;
  gap:5px;
  padding:12px 14px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
}
.android-note span{
  color:#f5f5f7;
  font-size:.8rem;
  font-weight:720;
}
.android-note p{
  color:#8e8e93;
  font-size:.86rem;
  line-height:1.45;
  margin:0;
}
.android-final-note{
  margin:18px auto 0!important;
  color:#8e8e93!important;
  font-size:.92rem!important;
}

.phone-stage{
  min-height:690px;
  display:flex;align-items:center;justify-content:center;
  position:relative;
}
.phone-glow{
  position:absolute;width:72%;aspect-ratio:1;border-radius:50%;
  background:#eaff28;filter:blur(110px);opacity:.13;
}
.iphone{
  position:relative;
  width:min(355px,86vw);
  aspect-ratio:9/19.5;
  padding:9px;
  border-radius:54px;
  background:linear-gradient(145deg,#454545,#111 45%,#3b3b3b);
  box-shadow:0 55px 130px rgba(0,0,0,.75), inset 0 0 0 1px rgba(255,255,255,.18);
  z-index:2;
}
.iphone::before{
  content:"";
  position:absolute;top:18px;left:50%;transform:translateX(-50%);
  width:31%;height:27px;border-radius:18px;background:#000;z-index:4;
}
.iphone-screen{
  width:100%;height:100%;object-fit:cover;
  border-radius:46px;overflow:hidden;background:#000;
}
.iphone.side{
  width:min(300px,72vw);
  transform:rotate(-4deg);
}
.iphone.side.right{transform:rotate(4deg)}
.ff-scroll-hint{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);color:#6e6e73;font-size:.76rem}

.ff-section{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto;
  padding:130px 0;
}
.ff-center{text-align:center}
.ff-section .eyebrow{color:#8e8e93}
.ff-section h2{
  margin:0;
  font-size:clamp(3.3rem,7vw,6.8rem);
  line-height:.92;
  letter-spacing:-.07em;
  font-weight:740;
}
.ff-section .section-lead{
  max-width:760px;
  margin:27px auto 0;
  color:#a1a1a6;
  font-size:clamp(1.12rem,1.8vw,1.42rem);
  line-height:1.6;
  letter-spacing:-.02em;
}
.ff-black-card{
  margin-top:56px;
  min-height:760px;
  border-radius:46px;
  background:linear-gradient(145deg,#111,#191919);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;
  position:relative;
}
.ff-black-card .copy{padding:68px}
.ff-black-card h3{
  font-size:clamp(3rem,5.7vw,5.8rem);
  line-height:.92;letter-spacing:-.065em;margin:0 0 24px;
}
.ff-black-card p{
  max-width:560px;color:#a1a1a6;font-size:1.17rem;line-height:1.7
}
.ff-device-wrap{min-height:100%;display:flex;align-items:center;justify-content:center;padding:56px;position:relative}
.ff-device-wrap::before{
  content:"";position:absolute;width:66%;aspect-ratio:1;border-radius:50%;
  background:#ff5334;filter:blur(120px);opacity:.12
}
.ff-mini-grid{
  margin-top:22px;
  display:grid;grid-template-columns:repeat(2,1fr);gap:22px
}
.ff-feature-card{
  min-height:560px;border-radius:38px;
  background:#111;border:1px solid rgba(255,255,255,.08);
  padding:46px;overflow:hidden;position:relative
}
.ff-feature-card h3{
  margin:0 0 17px;font-size:clamp(2.3rem,4vw,4.3rem);
  letter-spacing:-.055em;line-height:.95
}
.ff-feature-card p{color:#a1a1a6;line-height:1.65;font-size:1.05rem;max-width:520px}
.ff-feature-card .iphone{margin:44px auto -180px;width:min(270px,75%)}
.ff-feature-card.green{background:linear-gradient(145deg,#111,#181a0e)}
.ff-feature-card.orange{background:linear-gradient(145deg,#111,#24100b)}

.watch-section{
  width:100%;background:#f5f5f7;color:#111;
  padding:130px 0;margin-top:80px
}
.watch-inner{width:min(1240px,calc(100% - 32px));margin:0 auto}
.watch-inner .eyebrow{color:#6e6e73}
.watch-inner h2{
  margin:0;font-size:clamp(3.3rem,7vw,6.8rem);line-height:.92;letter-spacing:-.07em
}
.watch-inner .section-lead{color:#6e6e73;max-width:760px;font-size:1.25rem;line-height:1.6}
.watch-row{
  margin-top:72px;display:grid;grid-template-columns:repeat(3,1fr);gap:28px;align-items:center
}
.watch{
  margin:auto;
  width:min(290px,92%);
  padding:18px;
  border-radius:64px;
  background:linear-gradient(145deg,#494949,#111);
  box-shadow:0 28px 65px rgba(0,0,0,.23), inset 0 0 0 1px rgba(255,255,255,.15);
}
.watch img{width:100%;border-radius:48px}
.watch-caption{text-align:center;color:#6e6e73;margin-top:18px;font-size:.92rem}

.tv-section{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto;
  padding:140px 0
}
.tv-copy{text-align:center;max-width:850px;margin:0 auto}
.tv-copy h2{font-size:clamp(3.3rem,7vw,6.8rem);margin:0;line-height:.92;letter-spacing:-.07em}
.tv-frame{
  margin-top:62px;padding:14px;border-radius:28px;
  background:linear-gradient(145deg,#333,#0c0c0c);
  box-shadow:0 42px 120px rgba(0,0,0,.6);
}
.tv-frame img{width:100%;border-radius:18px}
.tv-stand{width:24%;height:18px;margin:0 auto;background:linear-gradient(90deg,#242424,#555,#242424);border-radius:0 0 20px 20px}
.tv-foot{width:34%;height:6px;background:#2a2a2a;margin:0 auto;border-radius:999px}

.ff-stats{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto;padding:130px 0;
  display:grid;grid-template-columns:.9fr 1.1fr;gap:78px;align-items:center
}
.ff-stats-copy h2{font-size:clamp(3.2rem,6vw,6rem);line-height:.92;letter-spacing:-.07em;margin:0}
.ff-stats-copy p{font-size:1.18rem;line-height:1.7;color:#a1a1a6}
.health-badge-wrap{margin-top:30px}
.health-badge{
  display:block;
  width:184px;
  max-width:100%;
  height:auto;
  filter:drop-shadow(0 18px 34px rgba(0,0,0,.28));
}
.ff-stats .phone-stage{min-height:650px}

.ff-final{
  width:min(1240px,calc(100% - 32px));
  margin:0 auto 100px;
  padding:120px 30px;
  text-align:center;
  border-radius:48px;
  background:
    radial-gradient(circle at 50% 15%,rgba(234,255,40,.18),transparent 30%),
    linear-gradient(180deg,#141414,#0c0c0c);
  border:1px solid rgba(255,255,255,.08)
}
.ff-final > img{width:104px;height:104px;border-radius:28px;margin:0 auto 28px;object-fit:cover}
.ff-final h2{font-size:clamp(3.2rem,7vw,6.6rem);line-height:.92;letter-spacing:-.07em;margin:0}
.ff-final p{color:#a1a1a6;font-size:1.2rem;line-height:1.6;max-width:650px;margin:24px auto 30px}

@media(max-width:900px){
  .ff-hero,.ff-black-card,.ff-stats{grid-template-columns:1fr}
  .ff-hero{padding-top:125px;gap:30px}
  .ff-hero-copy{text-align:center}
  .ff-store-row{justify-content:center}
  .ff-sub{margin-left:auto;margin-right:auto}
  .phone-stage{min-height:610px}
  .ff-black-card .copy{padding:48px 30px 12px}
  .ff-device-wrap{min-height:560px}
  .ff-mini-grid{grid-template-columns:1fr}
  .watch-row{grid-template-columns:1fr}
  .watch{width:min(310px,80%)}
  .ff-stats{text-align:center}
  .ff-stats-copy p{max-width:680px;margin-left:auto;margin-right:auto}
  .health-badge{margin-left:auto;margin-right:auto}
}
@media(max-width:560px){
  .ff-section,.tv-section,.ff-stats{padding:90px 0}
  .ff-black-card{border-radius:30px;min-height:auto}
  .ff-feature-card{border-radius:30px;padding:34px 24px;min-height:500px}
  .watch-section{padding:90px 0}
  .ff-final{border-radius:30px;padding:80px 22px}
}

/* ---------- Coming soon product pages ---------- */
.dev-page{min-height:100vh;background:#000;color:#f5f5f7}
.dev-page.hola-dev{background:linear-gradient(180deg,#081126 0%,#101a34 52%,#070b16 100%)}
.dev-page.once-dev{background:linear-gradient(180deg,#111315 0%,#17191c 58%,#0c0d0f 100%)}
.dev-hero{
  width:min(1240px,calc(100% - 32px));min-height:100svh;margin:0 auto;
  padding:145px 0 90px;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;
}
.dev-status{
  display:inline-flex;align-items:center;gap:9px;padding:8px 14px;border-radius:999px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.11);
  color:#c7c7cc;font-size:.82rem;font-weight:650;letter-spacing:.01em
}
.dev-status i{width:7px;height:7px;border-radius:50%;background:#ffcc00;box-shadow:0 0 18px #ffcc00}
.dev-icon{
  width:clamp(116px,14vw,180px);height:clamp(116px,14vw,180px);border-radius:34px;
  object-fit:cover;margin:38px 0 30px;box-shadow:0 35px 90px rgba(0,0,0,.42)
}
.dev-hero h1{font-size:clamp(4.8rem,12vw,10.5rem);line-height:.82;letter-spacing:-.085em;margin:0;font-weight:760}
.hola-dev .dev-hero h1{color:#ffc21a}
.dev-tagline{font-size:clamp(1.65rem,3vw,2.8rem);letter-spacing:-.045em;margin:34px 0 0;font-weight:650}
.dev-description{max-width:720px;color:#a1a1a6;font-size:clamp(1.05rem,1.7vw,1.32rem);line-height:1.65;margin:22px auto 0}
.dev-coming{margin-top:38px;color:#f5f5f7;font-weight:650;font-size:.96rem}
.dev-coming span{color:#8e8e93;font-weight:500}
.dev-orb{
  width:min(900px,85vw);height:360px;position:absolute;z-index:-1;filter:blur(100px);opacity:.18;border-radius:50%
}
.hola-dev .dev-orb{background:#ffbd00}
.once-dev .dev-orb{background:#53809a}
.dev-strip{width:min(1240px,calc(100% - 32px));margin:-60px auto 110px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.dev-card{
  min-height:260px;padding:34px;border-radius:32px;background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);backdrop-filter:blur(20px)
}
.dev-card .num{font-size:.78rem;color:#8e8e93;margin-bottom:75px}
.dev-card h2{font-size:1.55rem;letter-spacing:-.04em;margin:0 0 10px}
.dev-card p{color:#8e8e93;line-height:1.55;margin:0;font-size:.94rem}
.dev-disclaimer{width:min(800px,calc(100% - 32px));margin:0 auto 100px;text-align:center;color:#6e6e73;font-size:.82rem;line-height:1.6}
@media(max-width:720px){
 .dev-strip{grid-template-columns:1fr;margin-top:-20px}
 .dev-card{min-height:190px}.dev-card .num{margin-bottom:42px}
}

/* ---------- Support Center ---------- */
.support-page{background:#050505}
.support-hero{
  width:min(1040px,calc(100% - 32px));margin:0 auto;
  padding:155px 0 78px;text-align:center
}
.support-hero h1{
  margin:0;font-size:clamp(4rem,9vw,7.7rem);
  line-height:.9;letter-spacing:-.075em
}
.support-hero p{
  max-width:680px;margin:27px auto 0;color:#a1a1a6;
  font-size:clamp(1.08rem,1.8vw,1.3rem);line-height:1.6
}
.support-apps{
  width:min(1120px,calc(100% - 32px));margin:0 auto 100px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.support-app{
  min-height:310px;padding:32px;border-radius:32px;
  border:1px solid rgba(255,255,255,.09);
  background:#111214;display:flex;flex-direction:column
}
.support-app img{width:66px;height:66px;border-radius:18px;object-fit:cover;margin-bottom:35px}
.support-app .state{
  font-size:.72rem;color:#8e8e93;text-transform:uppercase;
  letter-spacing:.1em;margin-bottom:9px
}
.support-app h2{font-size:2rem;letter-spacing:-.045em;margin:0 0 12px}
.support-app p{color:#8e8e93;line-height:1.55;margin:0 0 25px;font-size:.94rem}
.support-app a{margin-top:auto;font-weight:650;font-size:.94rem}
.support-app.disabled{opacity:.58}
.faq-wrap{width:min(920px,calc(100% - 32px));margin:0 auto;padding:30px 0 110px}
.faq-wrap>h2{font-size:clamp(2.8rem,6vw,5.2rem);letter-spacing:-.06em;margin:0 0 42px}
.faq-item{border-top:1px solid rgba(255,255,255,.11)}
.faq-item:last-child{border-bottom:1px solid rgba(255,255,255,.11)}
.faq-item details{padding:0}
.faq-item summary{
  cursor:pointer;list-style:none;padding:24px 4px;
  font-size:1.08rem;font-weight:620;display:flex;justify-content:space-between;gap:20px
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";font-size:1.45rem;font-weight:300;color:#8e8e93}
.faq-item details[open] summary::after{content:"−"}
.faq-item .answer{color:#a1a1a6;line-height:1.7;padding:0 4px 25px;max-width:760px}
.contact-panel{
  width:min(1120px,calc(100% - 32px));margin:0 auto 110px;
  padding:75px;border-radius:40px;text-align:center;
  background:linear-gradient(180deg,#151618,#0e0f10);
  border:1px solid rgba(255,255,255,.09)
}
.contact-panel h2{font-size:clamp(2.8rem,6vw,5.2rem);letter-spacing:-.06em;line-height:.95;margin:0}
.contact-panel>p{max-width:650px;margin:22px auto 28px;color:#a1a1a6;line-height:1.65}
.mail-button{
  display:inline-flex;padding:14px 20px;border-radius:999px;
  background:#f5f5f7;color:#050505;font-weight:650
}
.contact-tips{
  margin:48px auto 0;max-width:760px;text-align:left;
  display:grid;grid-template-columns:repeat(2,1fr);gap:12px
}
.contact-tip{padding:18px;border-radius:18px;background:rgba(255,255,255,.045);color:#a1a1a6;font-size:.9rem}
.contact-tip strong{display:block;color:#f5f5f7;margin-bottom:5px}
@media(max-width:800px){
 .support-apps{grid-template-columns:1fr}
 .support-app{min-height:250px}
 .contact-panel{padding:60px 24px}
 .contact-tips{grid-template-columns:1fr}
}

/* ---------- Support contact form ---------- */
.form-wrap{
  width:min(920px,calc(100% - 32px));
  margin:0 auto 110px;
}
.form-card{
  padding:42px;
  border-radius:34px;
  background:linear-gradient(180deg,#131416,#0e0f10);
  border:1px solid rgba(255,255,255,.09);
}
.form-card h2{
  margin:0 0 10px;
  font-size:clamp(2.6rem,5vw,4.8rem);
  letter-spacing:-.06em;
  line-height:.95;
}
.form-card>p{
  margin:0 0 30px;
  color:#a1a1a6;
  line-height:1.6;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field{display:flex;flex-direction:column;gap:8px}
.field.full{grid-column:1/-1}
.field label{
  font-size:.82rem;
  color:#d2d2d7;
  font-weight:600;
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.045);
  color:#f5f5f7;
  border-radius:16px;
  padding:14px 15px;
  outline:none;
  transition:border-color .2s,background .2s;
}
.field textarea{min-height:180px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.065);
}
.field select option{color:#111}
.form-actions{
  display:flex;align-items:center;justify-content:space-between;
  gap:18px;flex-wrap:wrap;margin-top:22px
}
.form-submit{
  border:0;
  border-radius:999px;
  padding:14px 20px;
  background:#f5f5f7;
  color:#050505;
  font-weight:700;
  cursor:pointer;
}
.form-note{
  color:#7d7d82;
  font-size:.78rem;
  line-height:1.5;
  max-width:540px
}
.form-message{
  margin-bottom:20px;
  padding:14px 16px;
  border-radius:14px;
  font-size:.92rem;
  display:none;
}
.form-message.success{
  display:block;
  background:rgba(52,199,89,.10);
  border:1px solid rgba(52,199,89,.28);
  color:#b8f1c6;
}
.form-message.error{
  display:block;
  background:rgba(255,69,58,.10);
  border:1px solid rgba(255,69,58,.28);
  color:#ffc0bb;
}
.hp-field{
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
  pointer-events:none!important;
}
@media(max-width:720px){
  .form-card{padding:30px 22px}
  .form-grid{grid-template-columns:1fr}
  .field.full{grid-column:auto}
}

/* ---------- Studio page ---------- */
.studio-page{
  background:#050505;
  color:#f5f5f7;
}
.studio-hero{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  min-height:94svh;
  padding:150px 0 100px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
}
.studio-hero-logo{
  width:clamp(110px,14vw,170px);
  border-radius:30%;
  margin-bottom:34px;
  box-shadow:0 35px 100px rgba(0,0,0,.55);
}
.studio-hero h1{
  margin:0;
  font-size:clamp(4.4rem,10vw,9rem);
  line-height:.86;
  letter-spacing:-.08em;
  font-weight:760;
}
.studio-hero h1 span{
  color:#7f8f98;
}
.studio-hero p{
  max-width:760px;
  margin:30px auto 0;
  color:#a1a1a6;
  font-size:clamp(1.08rem,1.8vw,1.35rem);
  line-height:1.65;
  letter-spacing:-.02em;
}
.studio-section{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:120px 0;
}
.studio-section h2{
  margin:0;
  font-size:clamp(3.2rem,6.5vw,6rem);
  line-height:.92;
  letter-spacing:-.07em;
}
.studio-section .intro{
  margin:25px 0 0;
  max-width:760px;
  color:#a1a1a6;
  font-size:1.2rem;
  line-height:1.7;
}
.studio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:50px;
}
.studio-card{
  min-height:390px;
  padding:36px;
  border-radius:34px;
  background:linear-gradient(180deg,#141517,#101113);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.studio-card .number{
  font-size:.78rem;
  color:#6e6e73;
  letter-spacing:.1em;
}
.studio-card h3{
  margin:0 0 14px;
  font-size:2.2rem;
  line-height:.98;
  letter-spacing:-.05em;
}
.studio-card p{
  margin:0;
  color:#8e8e93;
  line-height:1.6;
}
.studio-manifesto{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:80px 0 140px;
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:80px;
  align-items:start;
}
.studio-manifesto .label{
  position:sticky;
  top:100px;
  color:#8e8e93;
  font-size:.82rem;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.manifesto-lines{
  display:flex;
  flex-direction:column;
  gap:34px;
}
.manifesto-line{
  padding-bottom:34px;
  border-bottom:1px solid rgba(255,255,255,.10);
  font-size:clamp(2.2rem,4.5vw,4.6rem);
  line-height:1.02;
  letter-spacing:-.06em;
  color:#f5f5f7;
}
.manifesto-line span{
  color:#6e6e73;
}
.studio-products{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto 120px;
  padding:70px;
  border-radius:42px;
  background:
    radial-gradient(circle at 85% 15%,rgba(79,127,150,.18),transparent 35%),
    linear-gradient(180deg,#121315,#0e0f10);
  border:1px solid rgba(255,255,255,.08);
}
.studio-products-head{
  display:flex;
  justify-content:space-between;
  gap:30px;
  align-items:end;
  margin-bottom:46px;
}
.studio-products h2{
  margin:0;
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:.92;
  letter-spacing:-.07em;
}
.studio-products p{
  max-width:480px;
  color:#8e8e93;
  line-height:1.6;
  margin:0;
}
.product-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.product-row{
  display:flex;
  align-items:center;
  gap:15px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.07);
}
.product-row img{
  width:58px;
  height:58px;
  border-radius:16px;
  object-fit:cover;
}
.product-row strong{
  display:block;
  font-size:1rem;
}
.product-row span{
  display:block;
  margin-top:4px;
  color:#7d7d82;
  font-size:.8rem;
}
.studio-final{
  width:min(980px,calc(100% - 32px));
  margin:0 auto 120px;
  text-align:center;
  padding:100px 20px;
}
.studio-final h2{
  margin:0;
  font-size:clamp(3rem,6vw,5.8rem);
  line-height:.92;
  letter-spacing:-.07em;
}
.studio-final p{
  max-width:660px;
  margin:24px auto 30px;
  color:#8e8e93;
  font-size:1.15rem;
  line-height:1.65;
}
@media(max-width:900px){
  .studio-grid{grid-template-columns:1fr}
  .studio-card{min-height:280px}
  .studio-manifesto{grid-template-columns:1fr;gap:35px}
  .studio-manifesto .label{position:static}
  .studio-products{padding:45px 28px}
  .studio-products-head{display:block}
  .studio-products-head p{margin-top:22px}
  .product-list{grid-template-columns:1fr}
}

/* V8 — Studio hero spacing refinement */
.studio-hero .eyebrow{
  margin-bottom:38px;
}
.studio-hero h1{
  line-height:.98;
}
.studio-hero h1 span{
  display:block;
  margin-top:34px;
}
@media(max-width:720px){
  .studio-hero .eyebrow{margin-bottom:28px}
  .studio-hero h1{line-height:1}
  .studio-hero h1 span{margin-top:24px}
}

/* ---------- Apps overview page ---------- */
.apps-page{
  background:#050505;
  color:#f5f5f7;
}
.apps-hero{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto;
  padding:155px 0 80px;
  text-align:center;
}
.apps-hero h1{
  margin:0;
  font-size:clamp(4.2rem,9vw,7.8rem);
  line-height:.9;
  letter-spacing:-.075em;
}
.apps-hero p{
  max-width:720px;
  margin:28px auto 0;
  color:#a1a1a6;
  font-size:clamp(1.08rem,1.8vw,1.32rem);
  line-height:1.65;
}
.apps-overview{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto 120px;
  display:grid;
  gap:22px;
}
.apps-overview-card{
  min-height:360px;
  padding:42px;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.09);
  background:#111214;
  display:grid;
  grid-template-columns:1fr auto;
  gap:30px;
  align-items:center;
  overflow:hidden;
  position:relative;
}
.apps-overview-card::before{
  content:"";
  position:absolute;
  inset:auto -5% -35% 35%;
  height:85%;
  filter:blur(100px);
  opacity:.15;
  border-radius:50%;
}
.apps-overview-card.faul::before{background:#eaff28}
.apps-overview-card.hola-card::before{background:#ffc21a}
.apps-overview-card.once-card::before{background:#ff7f2a}
.apps-overview-card .meta{
  color:#8e8e93;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin-bottom:12px;
}
.apps-overview-card h2{
  margin:0 0 15px;
  font-size:clamp(2.8rem,5vw,5rem);
  letter-spacing:-.06em;
  line-height:.95;
}
.apps-overview-card p{
  max-width:600px;
  color:#a1a1a6;
  line-height:1.65;
  font-size:1.05rem;
}
.apps-overview-card img{
  width:170px;
  height:170px;
  border-radius:26%;
  object-fit:cover;
  box-shadow:0 24px 70px rgba(0,0,0,.35);
  z-index:1;
}
.apps-overview-card .actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}
.status-pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
  color:#b7b7bb;
  font-size:.78rem;
}
@media(max-width:720px){
  .apps-overview-card{
    grid-template-columns:1fr;
  }
  .apps-overview-card img{
    width:130px;height:130px;
  }
}


/* ---------- Hola. product preview V10 ---------- */
.hola-product{background:#050505;color:#f5f5f7}
.hola-product .site-header{background:rgba(5,5,5,.72)}
.hola-hero-v10{
  min-height:92vh; display:grid; place-items:center; text-align:center;
  padding:150px 24px 90px; position:relative; overflow:hidden;
}
.hola-hero-v10:before{
  content:""; position:absolute; width:760px; height:520px; top:10%; left:50%;
  transform:translateX(-50%); border-radius:50%;
  background:radial-gradient(circle,rgba(255,193,45,.24),rgba(255,193,45,0) 68%);
  filter:blur(25px); pointer-events:none;
}
.hola-hero-inner{position:relative;z-index:1;max-width:1050px}
.hola-dev-badge{
  display:inline-flex;align-items:center;gap:9px;padding:9px 14px;border-radius:999px;
  border:1px solid rgba(255,255,255,.11);background:rgba(255,255,255,.055);
  color:#c7c7cc;font-size:.82rem;font-weight:650;margin-bottom:28px
}
.hola-dev-badge i{width:8px;height:8px;border-radius:50%;background:#ffc12d;box-shadow:0 0 18px rgba(255,193,45,.75)}
.hola-hero-icon{width:112px;height:112px;border-radius:25%;box-shadow:0 25px 80px rgba(0,0,0,.45);margin-bottom:28px}
.hola-hero-v10 h1{font-size:clamp(5rem,12vw,10rem);line-height:.84;letter-spacing:-.085em;margin:0}
.hola-hero-v10 h1 span{color:#ffc12d}
.hola-hero-v10 .lead{font-size:clamp(1.45rem,3vw,2.35rem);font-weight:650;letter-spacing:-.035em;margin:34px auto 0;max-width:760px}
.hola-hero-v10 .sub{color:#9a9aa0;font-size:1.05rem;line-height:1.65;max-width:650px;margin:20px auto 0}

.hola-showcase{
  width:min(1260px,calc(100% - 32px));margin:0 auto 130px;padding:70px 32px 0;
  border-radius:46px;background:#f6f1e7;color:#090909;overflow:hidden;position:relative
}
.hola-showcase-copy{text-align:center;max-width:850px;margin:0 auto 60px}
.hola-kicker{text-transform:uppercase;letter-spacing:.14em;font-size:.78rem;font-weight:750;color:#a17c21}
.hola-showcase h2,.hola-feature h2{font-size:clamp(3rem,6.4vw,6.4rem);line-height:.92;letter-spacing:-.065em;margin:14px 0 20px}
.hola-showcase-copy p,.hola-feature-copy p{color:#746f65;font-size:1.08rem;line-height:1.65}
.hola-phones{display:flex;justify-content:center;align-items:flex-end;gap:28px;margin-bottom:-130px}
.hola-phone{
  width:min(31%,360px);padding:10px;background:#0c0c0d;border:1px solid rgba(255,255,255,.15);
  border-radius:58px;box-shadow:0 35px 80px rgba(0,0,0,.25)
}
.hola-phone img{display:block;width:100%;border-radius:49px}
.hola-phone.center{transform:translateY(-34px)}

.hola-feature{
  width:min(1120px,calc(100% - 32px));margin:0 auto 110px;display:grid;
  grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center
}
.hola-feature.reverse{grid-template-columns:1.1fr .9fr}
.hola-feature.reverse .hola-feature-copy{order:2}
.hola-feature-copy .number{font-size:.82rem;letter-spacing:.12em;color:#ffc12d;font-weight:750;margin-bottom:18px}
.hola-feature-copy h2{font-size:clamp(3rem,5.4vw,5.6rem)}
.hola-feature-visual{
  background:#f6f1e7;border-radius:42px;padding:42px 42px 0;overflow:hidden;min-height:600px;
  display:flex;justify-content:center;align-items:flex-end
}
.hola-feature-visual .hola-phone{width:min(100%,340px);margin-bottom:-85px}
.hola-feature-visual.dialog-bg{background:#17191f}
.hola-feature-visual.dialog-bg .hola-phone{margin-bottom:-70px}

.hola-principles{width:min(1120px,calc(100% - 32px));margin:0 auto 120px}
.hola-principles-head{text-align:center;max-width:800px;margin:0 auto 48px}
.hola-principles-head h2{font-size:clamp(3rem,6vw,6rem);line-height:.94;letter-spacing:-.06em;margin:0}
.hola-principles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.hola-principle{min-height:270px;padding:34px;border-radius:32px;background:#111214;border:1px solid rgba(255,255,255,.08)}
.hola-principle b{display:block;color:#ffc12d;font-size:.82rem;letter-spacing:.12em;margin-bottom:55px}
.hola-principle h3{font-size:1.65rem;letter-spacing:-.035em;margin:0 0 12px}
.hola-principle p{color:#929298;line-height:1.6;margin:0}

.hola-final{width:min(1120px,calc(100% - 32px));margin:0 auto 110px;text-align:center;padding:100px 25px;border-top:1px solid rgba(255,255,255,.1)}
.hola-final h2{font-size:clamp(3.4rem,7vw,7rem);line-height:.9;letter-spacing:-.07em;margin:0 0 25px}
.hola-final h2 span{color:#ffc12d}
.hola-final p{color:#98989d;max-width:660px;margin:0 auto;line-height:1.65}

@media(max-width:800px){
  .hola-hero-v10{min-height:auto;padding-top:135px}
  .hola-showcase{padding:55px 18px 0;border-radius:34px}
  .hola-phones{gap:10px;margin-bottom:-45px}
  .hola-phone{padding:5px;border-radius:28px}
  .hola-phone img{border-radius:24px}
  .hola-phone.center{transform:translateY(-18px)}
  .hola-feature,.hola-feature.reverse{grid-template-columns:1fr;gap:34px}
  .hola-feature.reverse .hola-feature-copy{order:initial}
  .hola-feature-visual{min-height:490px;padding:30px 24px 0}
  .hola-principles-grid{grid-template-columns:1fr}
}


/* ---------- OnceDay teaser V11 ---------- */
.once-product{background:#050505;color:#f5f5f7}
.once-product .site-header{background:rgba(5,5,5,.72)}
.once-hero{
 min-height:94vh;display:grid;place-items:center;text-align:center;padding:145px 24px 90px;
 position:relative;overflow:hidden
}
.once-glow{position:absolute;width:720px;height:720px;border-radius:50%;
 background:radial-gradient(circle,rgba(255,93,44,.18),rgba(102,30,174,.10) 40%,transparent 70%);
 filter:blur(25px)}
.once-inner{position:relative;z-index:1;max-width:1050px}
.once-icon{width:118px;height:118px;border-radius:26%;box-shadow:0 30px 90px rgba(0,0,0,.5);margin-bottom:30px}
.once-badge{display:inline-flex;align-items:center;gap:9px;padding:9px 14px;border:1px solid rgba(255,255,255,.1);
 border-radius:999px;background:rgba(255,255,255,.05);color:#aaaab0;font-size:.82rem;margin-bottom:30px}
.once-badge i{width:8px;height:8px;border-radius:50%;background:#ff7040}
.once-hero h1{font-size:clamp(5rem,12vw,10rem);line-height:.84;letter-spacing:-.085em;margin:0}
.once-hero .lead{font-size:clamp(1.6rem,3.5vw,3rem);font-weight:650;letter-spacing:-.045em;margin:35px 0 0}
.once-hero .sub{max-width:620px;margin:20px auto 0;color:#929298;line-height:1.65;font-size:1.05rem}

.once-statement{width:min(1120px,calc(100% - 32px));margin:0 auto 130px;padding:120px 35px;
 border-radius:46px;background:#111214;border:1px solid rgba(255,255,255,.08);text-align:center}
.once-statement small{color:#ff7040;font-weight:750;letter-spacing:.13em}
.once-statement h2{font-size:clamp(3.6rem,8vw,8rem);line-height:.88;letter-spacing:-.075em;margin:25px auto 0;max-width:1000px}
.once-statement h2 span{color:#74747a}

.once-ideas{width:min(1120px,calc(100% - 32px));margin:0 auto 130px}
.once-ideas-head{max-width:800px;margin-bottom:48px}
.once-ideas-head h2{font-size:clamp(3.2rem,6vw,6rem);line-height:.92;letter-spacing:-.065em;margin:0}
.once-ideas-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.once-idea{min-height:330px;border-radius:34px;padding:34px;background:#101113;border:1px solid rgba(255,255,255,.08);
 display:flex;flex-direction:column;justify-content:space-between}
.once-idea .num{color:#77777d;font-size:.8rem;letter-spacing:.12em}
.once-idea h3{font-size:2rem;line-height:1;letter-spacing:-.045em;margin:0 0 14px}
.once-idea p{color:#929298;line-height:1.6;margin:0}
.once-idea strong{color:#ff7040}

.once-secret{min-height:72vh;display:grid;place-items:center;text-align:center;padding:100px 25px;
 border-top:1px solid rgba(255,255,255,.08)}
.once-secret div{max-width:930px}
.once-secret h2{font-size:clamp(4rem,9vw,9rem);line-height:.87;letter-spacing:-.08em;margin:0}
.once-secret h2 span{color:#6f6f75}
.once-secret p{max-width:620px;margin:30px auto 0;color:#929298;line-height:1.65}

@media(max-width:800px){
 .once-hero{min-height:auto;padding-top:135px}
 .once-statement{padding:80px 22px;border-radius:34px}
 .once-ideas-grid{grid-template-columns:1fr}
 .once-idea{min-height:250px}
}

/* ---------- Legal pages V12 ---------- */
.legal-page{background:#050505;color:#f5f5f7}
.legal-main{width:min(900px,calc(100% - 32px));margin:0 auto;padding:155px 0 120px}
.legal-head{padding-bottom:55px;border-bottom:1px solid rgba(255,255,255,.1);margin-bottom:55px}
.legal-head h1{font-size:clamp(4rem,8vw,7rem);line-height:.9;letter-spacing:-.07em;margin:0}
.legal-head p{color:#8e8e93;font-size:1.05rem;line-height:1.6;margin:24px 0 0;max-width:680px}
.legal-section{padding:35px 0;border-bottom:1px solid rgba(255,255,255,.09)}
.legal-section h2{font-size:1.7rem;letter-spacing:-.035em;margin:0 0 16px}
.legal-section h3{font-size:1.05rem;margin:22px 0 8px}
.legal-section p,.legal-section li{color:#a1a1a6;line-height:1.72}
.legal-section ul{padding-left:20px}
.legal-section a{color:#f5f5f7;text-decoration:underline;text-underline-offset:3px}
.legal-address{font-style:normal;color:#f5f5f7;line-height:1.7}
.legal-note{margin-top:50px;color:#6e6e73;font-size:.8rem;line-height:1.6}

/* V13 Motion */
[data-reveal]{opacity:0;transform:translateY(28px);transition:opacity .8s cubic-bezier(.2,.75,.2,1),transform .9s cubic-bezier(.2,.75,.2,1)}
[data-reveal].is-visible{opacity:1;transform:none}
[data-reveal="scale"]{transform:translateY(20px) scale(.985)}
[data-reveal="scale"].is-visible{transform:none}
[data-stagger]>*{opacity:0;transform:translateY(24px);transition:opacity .72s cubic-bezier(.2,.75,.2,1),transform .82s cubic-bezier(.2,.75,.2,1)}
[data-stagger].is-visible>*{opacity:1;transform:none}
[data-stagger].is-visible>*:nth-child(2){transition-delay:.08s}
[data-stagger].is-visible>*:nth-child(3){transition-delay:.16s}
[data-stagger].is-visible>*:nth-child(4){transition-delay:.24s}
.app-card,.apps-overview-card,.studio-card,.support-app,.hola-principle,.once-idea{transition:transform .38s cubic-bezier(.2,.75,.2,1),border-color .38s,box-shadow .38s}
.app-card:hover,.apps-overview-card:hover,.studio-card:hover,.support-app:not(.disabled):hover,.hola-principle:hover,.once-idea:hover{transform:translateY(-5px);border-color:rgba(255,255,255,.14);box-shadow:0 24px 70px rgba(0,0,0,.22)}
.app-card .app-visual img,.apps-overview-card>img,.product-row img,.support-app img{transition:transform .5s cubic-bezier(.2,.75,.2,1)}
.app-card:hover .app-visual img,.apps-overview-card:hover>img,.product-row:hover img,.support-app:hover img{transform:scale(1.025)}
.button,.mail-button,.form-submit,.appstore-badge{transition:transform .22s cubic-bezier(.2,.75,.2,1),filter .22s}
.button:hover,.mail-button:hover,.form-submit:hover,.appstore-badge:hover{transform:translateY(-2px)}
.button:active,.mail-button:active,.form-submit:active,.appstore-badge:active{transform:scale(.985)}
.site-header{transition:background .28s,border-color .28s,box-shadow .28s}
.site-header.scrolled{background:rgba(10,10,12,.82);border-color:rgba(255,255,255,.14);box-shadow:0 16px 50px rgba(0,0,0,.28)}
.iphone,.watch,.tv-frame,.hola-phone{transition:transform .5s cubic-bezier(.2,.75,.2,1),box-shadow .5s}
.iphone:hover,.watch:hover,.hola-phone:hover{transform:translateY(-6px)}
.tv-frame:hover{transform:translateY(-4px)}
.iphone.side:hover{transform:translateY(-6px) rotate(-4deg)}
.iphone.side.right:hover{transform:translateY(-6px) rotate(4deg)}
.faq-item summary{transition:color .2s,padding-left .2s}
.faq-item summary:hover{color:#fff;padding-left:8px}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}[data-reveal],[data-stagger]>*{opacity:1!important;transform:none!important}}

/* ---------- V14: Mobile / iPad polish ---------- */

/* Tablet */
@media (max-width: 1024px){
  .site-header{
    width:min(960px,calc(100% - 24px));
  }

  main,
  .hero,
  .about,
  .contact-cta,
  .apps-section,
  .studio-section,
  .studio-products,
  .support-apps,
  .faq-wrap,
  .form-wrap,
  .legal-main,
  .ff-section,
  .ff-stats,
  .tv-section,
  .watch-inner,
  .hola-showcase,
  .hola-feature,
  .hola-principles,
  .once-statement,
  .once-ideas{
    max-width:100%;
  }

  .hero{
    min-height:auto;
    padding-top:135px;
    padding-bottom:85px;
  }

  .hero h1{
    font-size:clamp(4.2rem,10vw,7rem);
  }

  .app-card{
    min-height:auto;
  }

  .app-copy{
    padding:52px 42px 28px;
  }

  .app-visual{
    padding:34px 42px 54px;
  }

  .studio-grid,
  .product-list,
  .support-apps,
  .hola-principles-grid,
  .once-ideas-grid{
    gap:14px;
  }

  .ff-hero{
    min-height:auto;
    padding-top:130px;
  }

  .ff-black-card{
    min-height:auto;
  }

  .watch-row{
    gap:18px;
  }
}

/* Mobile navigation + spacing */
@media (max-width: 760px){
  body{
    overflow-x:hidden;
  }

  .site-header{
    top:10px;
    width:calc(100% - 20px);
    height:auto;
    min-height:50px;
    padding:6px 7px 6px 9px;
    border-radius:16px;
  }

  .brand{
    gap:8px;
    flex-shrink:0;
  }

  .brand img{
    width:28px;
    height:28px;
    border-radius:8px;
  }

  .brand span{
    font-size:.9rem;
  }

  .nav{
    gap:2px;
    overflow-x:auto;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    max-width:calc(100vw - 135px);
    padding-bottom:1px;
  }

  .nav::-webkit-scrollbar{display:none}

  .nav a{
    white-space:nowrap;
    padding:8px 10px;
    font-size:.78rem;
    flex:0 0 auto;
  }

  /* Keep the currently highlighted nav item compact */
  .nav .nav-pill{
    border-radius:11px;
  }

  main{
    width:100%;
  }

  .hero,
  .apps-section,
  .about,
  .contact-cta,
  .studio-section,
  .studio-products,
  .support-apps,
  .faq-wrap,
  .form-wrap,
  .legal-main,
  .ff-section,
  .ff-stats,
  .tv-section,
  .watch-inner,
  .hola-showcase,
  .hola-feature,
  .hola-principles,
  .once-statement,
  .once-ideas,
  .once-secret{
    width:calc(100% - 24px);
  }

  .hero{
    padding:120px 0 70px;
    gap:34px;
    text-align:left;
    align-items:flex-start;
  }

  .hero-copy{
    width:100%;
  }

  .hero h1{
    font-size:clamp(3.65rem,15vw,5.7rem);
    line-height:.92;
    letter-spacing:-.07em;
  }

  .lead{
    font-size:1rem;
    line-height:1.6;
  }

  .hero-actions{
    width:100%;
    justify-content:flex-start;
  }

  .hero-mark{
    width:100%;
    justify-content:center;
    margin-top:20px;
  }

  .hero-mark img{
    width:220px;
  }

  .section-heading{
    width:100%;
    text-align:left;
    margin-bottom:26px;
  }

  .section-heading h2{
    font-size:clamp(2.8rem,12vw,4.5rem);
    line-height:.96;
  }

  .app-card{
    border-radius:28px;
    margin:16px 0;
  }

  .app-copy{
    padding:34px 24px 18px;
  }

  .app-badge{
    margin-bottom:26px;
  }

  .app-badge img{
    width:56px;
    height:56px;
    border-radius:16px;
  }

  .app-card h3{
    font-size:clamp(3rem,14vw,4.4rem);
    line-height:.93;
  }

  .app-card p{
    font-size:.98rem;
    line-height:1.6;
  }

  .chips{
    margin-top:18px;
  }

  .app-visual{
    min-height:300px;
    padding:24px 20px 40px;
  }

  .app-visual img{
    width:230px;
  }

  .about{
    padding:78px 0;
  }

  .about h2{
    font-size:clamp(2.9rem,12vw,4.5rem);
  }

  .contact-cta{
    padding:70px 20px;
    border-radius:28px;
    margin-bottom:80px;
  }

  .contact-cta h2{
    font-size:clamp(2.8rem,12vw,4.3rem);
  }

  footer{
    width:calc(100% - 24px);
    margin-bottom:20px;
    padding-top:28px;
  }

  /* Apps page */
  .apps-hero{
    width:calc(100% - 24px);
    padding:125px 0 60px;
    text-align:left;
  }

  .apps-hero h1{
    font-size:clamp(3.7rem,15vw,5.6rem);
  }

  .apps-overview{
    width:calc(100% - 24px);
    margin-bottom:90px;
  }

  .apps-overview-card{
    padding:28px 22px;
    border-radius:28px;
  }

  .apps-overview-card h2{
    font-size:clamp(2.7rem,13vw,4rem);
  }

  .apps-overview-card > img{
    width:118px;
    height:118px;
  }

  /* Studio */
  .studio-hero{
    width:calc(100% - 24px);
    padding:125px 0 75px;
    min-height:auto;
  }

  .studio-hero-logo{
    width:105px;
    margin-bottom:26px;
  }

  .studio-hero h1{
    font-size:clamp(3.6rem,15vw,5.8rem);
    line-height:.95;
  }

  .studio-hero h1 span{
    margin-top:22px;
  }

  .studio-hero p{
    font-size:1rem;
  }

  .studio-section{
    padding:85px 0;
  }

  .studio-section h2,
  .studio-products h2,
  .studio-final h2{
    font-size:clamp(3rem,12vw,4.8rem);
  }

  .studio-card{
    min-height:230px;
    padding:28px;
    border-radius:28px;
  }

  .studio-manifesto{
    width:calc(100% - 24px);
    padding:50px 0 95px;
  }

  .manifesto-line{
    font-size:clamp(2rem,10vw,3.2rem);
  }

  .studio-products{
    padding:36px 22px;
    border-radius:28px;
    margin-bottom:85px;
  }

  .product-row{
    padding:15px;
    border-radius:18px;
  }

  .studio-final{
    width:calc(100% - 24px);
    padding:75px 0;
  }

  /* Support */
  .support-hero{
    width:calc(100% - 24px);
    padding:125px 0 60px;
    text-align:left;
  }

  .support-hero h1{
    font-size:clamp(3.8rem,15vw,5.6rem);
  }

  .support-hero p{
    margin-left:0;
  }

  .support-app{
    min-height:220px;
    padding:26px;
    border-radius:26px;
  }

  .faq-wrap{
    padding-bottom:85px;
  }

  .faq-wrap > h2{
    font-size:clamp(2.8rem,12vw,4.5rem);
  }

  .faq-item summary{
    font-size:1rem;
    padding:20px 0;
  }

  .form-card{
    padding:28px 20px;
    border-radius:28px;
  }

  .form-card h2{
    font-size:clamp(2.8rem,12vw,4.3rem);
  }

  /* Legal */
  .legal-main{
    padding:125px 0 90px;
  }

  .legal-head{
    padding-bottom:38px;
    margin-bottom:30px;
  }

  .legal-head h1{
    font-size:clamp(3.7rem,15vw,5.6rem);
  }

  .legal-section{
    padding:28px 0;
  }

  /* faul.fit */
  .ff-hero{
    width:calc(100% - 24px);
    padding:120px 0 60px;
    text-align:left;
  }

  .ff-hero-copy{
    text-align:left;
  }

  .ff-hero h1{
    font-size:clamp(4rem,16vw,6rem);
  }

  .ff-store-row{
    justify-content:flex-start;
  }

  .phone-stage{
    min-height:510px;
  }

  .iphone{
    width:min(315px,82vw);
    border-radius:48px;
  }

  .iphone-screen{
    border-radius:40px;
  }

  .ff-section{
    padding:85px 0;
  }

  .ff-section h2{
    font-size:clamp(3.1rem,13vw,4.8rem);
  }

  .ff-black-card{
    border-radius:28px;
  }

  .ff-black-card .copy{
    padding:34px 22px 10px;
  }

  .ff-black-card h3{
    font-size:clamp(2.9rem,13vw,4.4rem);
  }

  .ff-device-wrap{
    padding:24px 18px 44px;
    min-height:460px;
  }

  .ff-feature-card{
    min-height:470px;
    border-radius:28px;
  }

  .ff-stats{
    gap:35px;
    padding:85px 0;
  }

  .ff-stats-copy h2{
    font-size:clamp(3.1rem,13vw,4.7rem);
  }

  .watch-section{
    padding:85px 0;
  }

  .watch-inner h2,
  .tv-copy h2,
  .ff-final h2{
    font-size:clamp(3rem,13vw,4.7rem);
  }

  .watch-row{
    margin-top:50px;
  }

  .watch{
    width:min(290px,78vw);
  }

  .tv-section{
    padding:90px 0;
  }

  .tv-frame{
    padding:8px;
    border-radius:20px;
  }

  .ff-final{
    width:calc(100% - 24px);
    padding:80px 20px;
    border-radius:28px;
  }

  /* Hola */
  .hola-hero-v10{
    width:100%;
    padding:120px 18px 70px;
    text-align:center;
  }

  .hola-hero-v10 h1{
    font-size:clamp(4.8rem,21vw,7rem);
  }

  .hola-hero-v10 .lead{
    font-size:1.7rem;
  }

  .hola-showcase{
    border-radius:28px;
    margin-bottom:90px;
    padding-top:44px;
  }

  .hola-showcase h2,
  .hola-feature h2,
  .hola-principles-head h2,
  .hola-final h2{
    font-size:clamp(3rem,13vw,4.8rem);
  }

  .hola-phones{
    gap:7px;
    margin-bottom:-35px;
  }

  .hola-phone{
    border-radius:24px;
  }

  .hola-phone img{
    border-radius:20px;
  }

  .hola-feature{
    margin-bottom:80px;
  }

  .hola-feature-visual{
    min-height:430px;
    border-radius:28px;
  }

  .hola-final{
    width:calc(100% - 24px);
    padding:75px 0;
  }

  /* OnceDay */
  .once-hero{
    width:100%;
    padding:120px 18px 70px;
  }

  .once-hero h1{
    font-size:clamp(4.8rem,21vw,7rem);
  }

  .once-hero .lead{
    font-size:1.8rem;
  }

  .once-statement{
    padding:75px 20px;
    border-radius:28px;
    margin-bottom:85px;
  }

  .once-statement h2,
  .once-ideas-head h2,
  .once-secret h2{
    font-size:clamp(3.3rem,14vw,5rem);
  }

  .once-idea{
    min-height:220px;
    border-radius:28px;
    padding:28px;
  }

  .once-secret{
    min-height:auto;
    padding:90px 0;
  }
}

/* Very small iPhones */
@media (max-width: 390px){
  .site-header{
    width:calc(100% - 12px);
  }

  .brand span{
    display:none;
  }

  .nav{
    max-width:calc(100vw - 58px);
  }

  .nav a{
    padding:8px 9px;
    font-size:.76rem;
  }

  .hero h1{
    font-size:3.45rem;
  }

  .hero-actions .button{
    width:100%;
  }

  .app-card h3{
    font-size:2.8rem;
  }

  .hola-phones{
    gap:4px;
  }
}

/* ---------- V15: Brand identity + development teasers ---------- */
.brand-statement{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto 110px;
  padding:110px 28px;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.brand-statement .eyebrow{margin-bottom:22px}
.brand-statement h2{
  margin:0;
  font-size:clamp(3.4rem,7vw,6.8rem);
  line-height:.92;
  letter-spacing:-.07em;
}
.brand-statement h2 span{color:#74747a}
.brand-statement p{
  max-width:680px;
  margin:26px auto 0;
  color:#98989d;
  line-height:1.65;
  font-size:1.08rem;
}

.dev-ribbon{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.055);
  color:#c0c0c5;
  font-size:.76rem;
  font-weight:650;
  letter-spacing:.02em;
}
.dev-ribbon i{
  width:7px;height:7px;border-radius:50%;
  background:#ffcc00;
  box-shadow:0 0 16px rgba(255,204,0,.5);
}
.app-card .dev-ribbon{margin-bottom:18px}
.hola .dev-ribbon i{background:#ffc21a}
.onceday .dev-ribbon i{background:#ff7040}

.dev-teaser-note{
  margin-top:22px;
  color:rgba(255,255,255,.55);
  font-size:.82rem;
  line-height:1.5;
  max-width:520px;
}
.apps-overview-card .dev-teaser-note{color:#7d7d82}
.studio-products .product-row[data-dev="true"]{
  position:relative;
}
.studio-products .product-row[data-dev="true"]::after{
  content:"In Entwicklung";
  margin-left:auto;
  padding:6px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.05);
  color:#8e8e93;
  font-size:.72rem;
}

@media(max-width:760px){
  .brand-statement{
    width:calc(100% - 24px);
    padding:78px 0;
    margin-bottom:80px;
  }
  .brand-statement h2{
    font-size:clamp(3rem,13vw,4.8rem);
  }
  .studio-products .product-row[data-dev="true"]::after{
    display:none;
  }
}

/* ---------- V16 Launch polish ---------- */
.error-page{background:#050505;color:#f5f5f7;min-height:100vh}
.error-main{
  min-height:100vh;width:min(780px,calc(100% - 32px));margin:0 auto;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;
  padding:150px 0 96px;
}
.error-mark{
  width:86px;
  height:86px;
  border-radius:22px;
  object-fit:cover;
  margin:0 auto 30px;
  box-shadow:0 24px 80px rgba(0,0,0,.35);
}
.error-main h1{
  max-width:760px;
  margin:14px 0 22px;
  font-size:clamp(3.35rem,7.4vw,6.4rem);
  line-height:.95;
  letter-spacing:-.065em;
}
.error-main h1 span{color:#6e6e73}
.error-main > p:not(.eyebrow){max-width:600px;color:#929298;line-height:1.65;font-size:1.08rem;margin:0 0 32px}
.error-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}

.support-privacy-note{font-size:.78rem!important;color:#777!important;line-height:1.55!important;margin-top:16px!important}
.support-privacy-note a{color:#aaa;text-decoration:underline;text-underline-offset:3px}
.support-success{
  width:min(760px,calc(100% - 32px));margin:60px auto 120px;padding:70px 42px;text-align:center;
  border-radius:36px;background:#111214;border:1px solid rgba(255,255,255,.09)
}
.support-success[hidden]{display:none}
.success-check{
  width:58px;height:58px;border-radius:50%;display:grid;place-items:center;margin:0 auto 24px;
  background:#f5f5f7;color:#080808;font-size:1.6rem;font-weight:800
}
.support-success h2{font-size:clamp(2.8rem,6vw,5rem);line-height:.94;letter-spacing:-.06em;margin:10px 0 18px}
.support-success > p:not(.eyebrow){max-width:560px;margin:0 auto 28px;color:#96969b;line-height:1.65}
@media(max-width:760px){
 .error-main{width:calc(100% - 28px);padding:128px 0 72px;justify-content:center}
 .error-mark{width:74px;height:74px;border-radius:19px;margin-bottom:24px}
 .error-main h1{font-size:clamp(2.85rem,13vw,4.35rem);letter-spacing:-.055em;line-height:1}
 .error-main > p:not(.eyebrow){font-size:1rem;margin-bottom:26px}
 .error-actions{width:100%}
 .error-actions .button{width:100%;justify-content:center}
 .support-success{width:calc(100% - 24px);padding:52px 22px;border-radius:28px}
}
