  :root{
    --purple-vivid:#6D4FE0;
    --purple-deep:#2E1F5C;
    --purple-strong:#4A2E7D;
    --lavender:#E5D3FA;
    --lavender-soft:#F3EDFA;
    --bg-light:#F8F5FF;
    --ink:#1D1533;
    --ink-soft:#5C5470;
    --white:#FFFFFF;
    --gold:#B0884A;
    --radius-lg:28px;
    --radius-md:18px;
    --radius-sm:12px;
    --shadow-soft:0 20px 50px -20px rgba(46,31,92,0.25);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Nunito', sans-serif;
    color:var(--ink);
    background:var(--bg-light);
    overflow-x:hidden;
  }
  a{text-decoration:none; color:inherit;}
  img{max-width:100%; display:block;}
  ul{list-style:none;}
  button{font-family:inherit; cursor:pointer; border:none;}

  h1,h2,h3{font-family:'Bree Serif', serif; line-height:1.15;}

  .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 24px;
  }

  /* ── Focus visibility ─────────────────────────── */
  a:focus-visible, button:focus-visible{
    outline:3px solid var(--purple-vivid);
    outline-offset:3px;
    border-radius:6px;
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ── Header ────────────────────────────────────── */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(248,245,255,0.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(109,79,224,0.08);
  }
  .nav{
    position:relative;
    display:flex; align-items:center; justify-content:space-between;
    max-width:1540px;
    padding:18px 0 18px 24px;
  }
  .logo{
    display:flex; align-items:center; gap:10px;
    margin-left:max(12px, calc((100% - 1200px) / 2 + 12px));
    font-family:'Oleo Script Swash Caps', cursive;
    font-size:1.5rem;
    color:var(--purple-strong);
  }
  .brand-watermark{
    position:relative;
    display:block;
    width:220px;
    height:48px;
    overflow:hidden;
    flex-shrink:0;
  }
  .logo-icon{
    width:46px; height:46px;
    object-fit:contain;
    flex-shrink:0;
  }
  .brand-watermark img{
    position:absolute;
    width:390px;
    max-width:none;
    left:-102px;
    top:-103px;
  }
  .nav-links{
    display:flex; align-items:center; gap:32px;
  }
  .nav-links a{
    font-weight:700; font-size:0.92rem; color:var(--ink-soft);
    transition:color 0.2s;
  }
  .nav-links a.active, .nav-links a:hover{color:var(--purple-vivid);}
  .btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 22px; border-radius:999px;
    font-weight:800; font-size:0.9rem;
    transition:transform 0.18s ease, box-shadow 0.18s ease;
  }
  .btn-primary{
    background:var(--purple-deep); color:white;
    box-shadow:0 10px 24px -8px rgba(46,31,92,0.55);
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 30px -8px rgba(46,31,92,0.6);}
  .btn-outline{
    background:var(--white); color:var(--purple-strong);
    border:2px solid var(--purple-vivid);
    border-radius:14px;
  }
  .btn-outline:hover{background:var(--lavender-soft);}
  .nav-cta{
    display:inline-flex;
    padding:14px 30px;
    border-radius:22px;
    font-size:0.95rem;
  }
  .nav-links{display:none;}
  @media (min-width:960px){
    .nav-links{
      display:flex;
      margin-left:auto;
      margin-right:28px;
    }
  }
  .menu-toggle{
    display:none;
    width:42px; height:42px;
    flex-shrink:0;
    align-items:center; justify-content:center;
    border-radius:13px;
    color:var(--purple-deep);
    background:rgba(255,255,255,0.78);
    border:1px solid rgba(74,46,125,0.16);
    font-size:1.3rem;
  }
  .menu-toggle .bi-x-lg{display:none;}

  /* ── Top bleed (fondo de montañas detrás del header + hero) ──── */
  .top-bleed{
    position:relative;
    background-image:url('images/header_background.jpg');
    background-size:cover;
    background-position:center 30%;
    background-repeat:no-repeat;
  }
  .top-bleed header{
    background:rgba(248,245,255,0.12);
    border-bottom-color:rgba(255,255,255,0.18);
    backdrop-filter:blur(6px);
  }

  /* ── Hero ──────────────────────────────────────── */
  .hero{
    position:relative;
    padding:72px 0 40px;
    overflow:hidden;
  }
  .hero::before{
    content:"";
    position:absolute; inset:-20% -10% auto -10%;
    height:600px;
    background:
      radial-gradient(circle at 15% 20%, rgba(109,79,224,0.10), transparent 55%),
      radial-gradient(circle at 85% 10%, rgba(176,136,74,0.06), transparent 45%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid; gap:48px;
    grid-template-columns:1fr;
    align-items:center;
    position:relative;
  }
  @media (min-width:960px){
    .hero-grid{grid-template-columns:1fr 1.15fr;}
  }
  .hero h1{
    font-size:clamp(2.2rem, 4.5vw, 3.4rem);
    color:var(--purple-deep);
    margin-bottom:20px;
  }
  .hero h1 em{
    font-style:normal;
    background:linear-gradient(120deg, var(--purple-vivid), #9B7BFF);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }
  .hero p{
    font-size:1.05rem; color:var(--ink-soft); max-width:460px;
    margin-bottom:32px; line-height:1.65;
  }
  .hero-actions{
    display:flex; flex-wrap:wrap; gap:14px;
  }
  .btn-store{
    display:inline-flex; align-items:center; gap:12px;
    background:var(--purple-strong); color:white; padding:12px 22px 12px 16px;
    border-radius:14px; font-weight:700;
  }
  .btn-store .store-icon{
    width:28px; height:28px; object-fit:contain; flex-shrink:0;
  }
  .btn-store span small{display:block; font-size:0.65rem; font-weight:600; opacity:0.75;}
  /* ── Phone mockups ─────────────────────────────── */
  .phones{
    position:relative;
    top:-22px;
    height:645px;
    display:flex; align-items:center; justify-content:center;
  }
  .phone{
    position:absolute;
    width:265px; height:560px;
    border-radius:32px;
    background:var(--ink);
    padding:5px;
    box-shadow:var(--shadow-soft);
  }
  .phone-screen{
    width:100%; height:100%;
    border-radius:27px;
    overflow:hidden;
    background:var(--white);
    position:relative;
  }
  .phone-side{transform:rotate(-4deg); left:-3%; top:11%; opacity:0.95; z-index:1;}
  .phone-side.right{transform:rotate(4deg); right:-3%; left:auto;}
  .phone-main{z-index:2; width:288px; height:610px; top:50%; left:50%; transform:translate(-50%,-50%);}
  .phone-main .phone-screen{border-radius:29px;}
  @media (min-width:960px){
    .phones{left:155px;}
  }

  .mock-header{
    height:34%;
    background:linear-gradient(160deg, var(--purple-vivid) 0%, var(--purple-deep) 100%);
    padding:16px 14px;
    color:white;
    position:relative;
  }
  .mock-logo{font-family:'Oleo Script Swash Caps', cursive; font-size:0.9rem;}
  .mock-greet-label{font-size:0.55rem; opacity:0.8; margin-top:14px; font-weight:700;}
  .mock-greet{font-family:'Bree Serif', serif; font-size:1.05rem; margin-top:2px;}
  .mock-card{
    background:white; margin:-26px 12px 0; border-radius:16px;
    padding:12px; box-shadow:0 14px 30px -12px rgba(46,31,92,0.35);
    position:relative; z-index:3;
  }
  .mock-pill{
    display:inline-flex; align-items:center; gap:6px;
    background:var(--lavender); color:var(--purple-strong);
    font-size:0.55rem; font-weight:800; padding:4px 10px; border-radius:999px;
  }
  .mock-pill-dot{width:14px; height:14px; border-radius:50%; background:var(--purple-vivid); display:inline-block;}
  .mock-quote{
    font-family:'Bree Serif', serif; font-size:0.72rem; color:var(--ink);
    margin-top:8px; line-height:1.4;
  }
  .mock-ref{font-size:0.6rem; color:var(--purple-vivid); font-weight:700; margin-top:6px;}
  .mock-chips{display:flex; gap:6px; padding:10px 12px; margin-top:6px;}
  .mock-chip{
    flex:1; aspect-ratio:1; border-radius:10px; display:flex; align-items:center; justify-content:center;
    font-size:1rem;
  }
  .mock-nav{
    position:absolute; bottom:0; left:0; right:0;
    background:white; display:flex; justify-content:space-around;
    padding:10px 0 12px; font-size:0.5rem; color:var(--ink-soft); font-weight:700;
    border-top:1px solid rgba(0,0,0,0.05);
  }
  .mock-nav span.active{color:var(--purple-vivid);}
  .mock-dict{padding:12px;}
  .mock-dict-title{font-family:'Bree Serif', serif; font-size:0.85rem; color:var(--purple-deep); margin-bottom:10px;}
  .mock-dict-item{padding:8px 0; border-bottom:1px solid rgba(0,0,0,0.06);}
  .mock-dict-word{font-weight:800; color:var(--purple-vivid); font-size:0.65rem;}
  .mock-dict-def{font-size:0.58rem; color:var(--ink-soft); margin-top:3px; line-height:1.4;}
  .phone-screen img{
    width:100%; height:100%;
    object-fit:cover; object-position:top center;
    display:block;
  }

  /* ── Features ──────────────────────────────────── */
  .section{padding:96px 0;}
  #caracteristicas{
    position:relative;
    z-index:2;
    background:var(--bg-light);
    padding-top:12px;
  }
  .section-curve{
    position:relative;
    margin-top:-70px;
    line-height:0;
  }
  .section-curve svg{
    display:block;
    width:100%;
    height:70px;
  }
  .section-head{text-align:center; max-width:780px; margin:0 auto 56px;}
  .section-eyebrow{
    color:var(--purple-vivid); font-weight:800; font-size:0.78rem;
    letter-spacing:0.08em; margin-bottom:10px;
  }
  .section-head h2{font-size:clamp(1.6rem,3vw,2.2rem); color:var(--purple-deep);}
  @media (min-width:720px){
    .section-head h2{white-space:nowrap;}
  }
  .section-head h2 .rule{
    display:block; width:56px; height:4px; background:var(--purple-vivid);
    border-radius:99px; margin:16px auto 0;
  }

  .features-grid{
    display:grid; gap:28px;
    grid-template-columns:repeat(2,1fr);
  }
  @media (min-width:720px){ .features-grid{grid-template-columns:repeat(3,1fr);} }
  @media (min-width:1080px){ .features-grid{grid-template-columns:repeat(6,1fr);} }
  .feature{
    text-align:center;
  }
  .feature-icon{
    width:64px; height:64px; border-radius:50%; margin:0 auto 16px;
    display:flex; align-items:center; justify-content:center; font-size:1.55rem;
    background:var(--purple-vivid);
    color:var(--white);
  }
  .feature h3{font-size:0.95rem; color:var(--ink); margin-bottom:6px; font-family:'Nunito',sans-serif; font-weight:800;}
  .feature p{font-size:0.8rem; color:var(--ink-soft); line-height:1.5;}

  /* ── CTA banner ────────────────────────────────── */
  .cta-banner{
    background:linear-gradient(135deg, var(--purple-deep), var(--purple-strong) 60%, var(--purple-vivid));
    border-radius:var(--radius-lg);
    padding:56px 32px;
    color:white;
    position:relative;
    overflow:hidden;
  }
  .cta-banner::after{
    content:"";
    position:absolute; inset:0;
    background:radial-gradient(circle at 80% 0%, rgba(255,255,255,0.12), transparent 55%);
  }
  .cta-grid{
    display:grid; gap:32px; position:relative; z-index:1;
    grid-template-columns:1fr;
    align-items:center;
  }
  @media (min-width:960px){ .cta-grid{grid-template-columns:0.9fr 1fr 1fr;} }
  .cta-banner h2{font-size:1.7rem; margin-bottom:12px;}
  .cta-banner p{font-size:0.92rem; opacity:0.85; line-height:1.6; max-width:320px;}
  .floating-card{
    background:white; color:var(--ink); border-radius:18px; padding:16px;
    box-shadow:0 20px 40px -14px rgba(0,0,0,0.35);
  }
  .floating-card.dark{background:rgba(255,255,255,0.08); color:white; backdrop-filter:blur(6px);}
  .floating-card.widget-card{
    position:relative;
    min-height:180px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-align:center;
    background:
      linear-gradient(180deg, rgba(46,31,92,0.18), rgba(46,31,92,0.82)),
      url('images/widget.jpg') center/cover no-repeat;
  }
  .widget-heading{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-size:0.68rem;
    font-weight:800;
    letter-spacing:0.04em;
    text-transform:uppercase;
  }
  .widget-heading::before,
  .widget-heading::after{
    content:"";
    width:42px;
    height:1px;
    background:rgba(255,255,255,0.75);
  }
  .widget-quote{
    max-width:240px;
    margin:0;
    font-family:'Bree Serif', serif;
    font-size:0.95rem;
    line-height:1.45;
    text-shadow:0 2px 8px rgba(46,31,92,0.45);
  }
  .widget-quote span{
    font-size:1.35rem;
    line-height:0;
    color:var(--lavender);
  }
  .widget-reference{
    padding:6px 14px;
    border-radius:999px;
    background:var(--purple-vivid);
    color:var(--white);
    font-size:0.68rem;
    font-weight:800;
  }
  .widget-watermark{
    position:absolute;
    right:12px;
    bottom:9px;
    width:90px;
    height:20px;
    overflow:hidden;
    opacity:0.72;
  }
  .widget-watermark img{
    position:absolute;
    width:160px;
    max-width:none;
    left:-42px;
    top:-43px;
    filter:brightness(0) invert(1);
  }
  .fc-label{font-size:0.6rem; font-weight:800; letter-spacing:0.04em; opacity:0.7; display:flex; align-items:center; gap:6px; margin-bottom:8px;}
  .fc-quote{font-family:'Bree Serif', serif; font-size:0.85rem; line-height:1.45;}
  .fc-ref{font-size:0.7rem; margin-top:8px; font-weight:700; color:var(--purple-vivid);}
  .floating-card.dark .fc-ref{color:var(--lavender);}
  .fc-heart-row{display:flex; align-items:center; justify-content:space-between; gap:10px;}
  .fc-heart{
    width:34px; height:34px; border-radius:50%; background:var(--lavender-soft);
    display:flex; align-items:center; justify-content:center; color:#EC407A; flex-shrink:0;
  }

  /* ── Final download ────────────────────────────── */
  .download-final{
    text-align:center;
    padding:96px 0 60px;
    background-image:url('images/footer.jpg');
    background-size:cover;
    background-position:center bottom;
    background-repeat:no-repeat;
  }
  .download-final h2{
    display:flex; align-items:center; justify-content:center; flex-wrap:wrap; gap:8px;
    font-size:1.9rem; color:var(--purple-deep); margin-bottom:8px;
  }
  .download-brand{
    position:relative;
    display:inline-block;
    width:180px;
    height:34px;
    overflow:hidden;
  }
  .download-brand img{
    position:absolute;
    width:320px;
    max-width:none;
    left:-83px;
    top:-86px;
  }
  .download-final p{color:var(--ink-soft); margin-bottom:24px; font-weight:700; font-size:0.9rem;}
  .download-final .btn-store{margin:0 auto 18px; display:inline-flex;}
  .trust-row{
    display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:18px;
    font-size:0.78rem; color:var(--ink-soft); font-weight:700;
  }
  .trust-row i{color:var(--purple-vivid); margin-right:5px;}

  /* ── Footer ────────────────────────────────────── */
  footer{
    background:var(--purple-strong); color:rgba(255,255,255,0.85);
    padding:56px 0 28px; margin-top:0;
  }
  .footer-grid{
    display:grid; gap:36px;
    grid-template-columns:1.4fr repeat(3,1fr);
  }
  @media (max-width:760px){ .footer-grid{grid-template-columns:1fr 1fr;} }
  .footer-logo{
    display:flex; align-items:center; gap:10px;
    font-family:'Oleo Script Swash Caps', cursive; font-size:1.3rem; color:white;
    margin-bottom:12px;
  }
  .footer-logo .brand-watermark img{filter:brightness(0) invert(1);}
  .footer-tag{font-size:0.82rem; opacity:0.75; line-height:1.6; max-width:260px;}
  footer h4{font-size:0.8rem; font-weight:800; color:white; margin-bottom:14px; letter-spacing:0.03em;}
  footer ul li{margin-bottom:10px;}
  footer ul a,
  footer ul button{
    background:none;
    padding:0;
    color:inherit;
    font-size:0.85rem;
    opacity:0.78;
    transition:opacity 0.2s;
  }
  footer ul a:hover,
  footer ul button:hover{opacity:1;}
  .socials{display:flex; gap:10px;}
  .socials a{
    width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center; font-size:0.9rem;
  }
  .footer-bottom{
    border-top:1px solid rgba(255,255,255,0.14);
    margin-top:40px; padding-top:20px;
    text-align:center; font-size:0.78rem; opacity:0.65;
  }

  /* ── Contact dialog ────────────────────────────── */
  .contact-dialog{
    position:fixed;
    inset:0;
    margin:auto;
    width:min(90vw,460px);
    padding:0;
    border:0;
    border-radius:24px;
    color:var(--ink);
    background:var(--white);
    box-shadow:0 30px 80px -20px rgba(46,31,92,0.5);
  }
  .contact-dialog::backdrop{
    background:rgba(29,21,51,0.58);
    backdrop-filter:blur(4px);
  }
  .contact-dialog-content{
    position:relative;
    padding:38px 32px 32px;
    text-align:center;
  }
  .contact-dialog-icon{
    width:58px; height:58px; border-radius:50%; margin:0 auto 18px;
    display:flex; align-items:center; justify-content:center;
    background:var(--lavender-soft); color:var(--purple-vivid); font-size:1.5rem;
  }
  .contact-dialog h2{font-size:1.55rem; color:var(--purple-deep); margin-bottom:12px;}
  .contact-dialog p{color:var(--ink-soft); line-height:1.65; margin-bottom:18px;}
  .contact-email{
    display:inline-flex; align-items:center; gap:8px;
    color:var(--purple-strong); font-weight:800; font-size:0.9rem;
    overflow-wrap:anywhere;
  }
  .contact-close{
    display:block; margin:26px auto 0; padding:10px 24px;
    border-radius:12px; background:var(--purple-strong); color:var(--white);
    font-weight:800;
  }

  /* ── Mobile layout ─────────────────────────────── */
  @media (max-width:959px){
    .nav{
      min-height:68px;
      padding:10px 16px;
      gap:8px;
    }
    .logo{
      min-width:0;
      gap:6px;
      margin-left:0;
      margin-right:auto;
    }
    .logo-icon{width:36px;height:36px;}
    .logo .brand-watermark{width:110px;height:26px;}
    .logo .brand-watermark img{width:195px;left:-51px;top:-52px;}
    .nav-cta{
      margin-left:auto;
      padding:10px 14px;
      border-radius:16px;
      font-size:0.78rem;
      box-shadow:0 8px 18px -9px rgba(46,31,92,0.55);
    }
    .menu-toggle{display:inline-flex;}
    .nav-links{
      position:absolute;
      top:calc(100% + 8px);
      left:16px;
      right:16px;
      z-index:60;
      display:none;
      flex-direction:column;
      align-items:stretch;
      gap:4px;
      padding:10px;
      border:1px solid rgba(109,79,224,0.12);
      border-radius:17px;
      background:rgba(255,255,255,0.97);
      box-shadow:0 22px 50px -22px rgba(46,31,92,0.5);
      backdrop-filter:blur(14px);
    }
    .nav.menu-open .nav-links{display:flex;}
    .nav-links a{
      display:block;
      padding:12px 14px;
      border-radius:11px;
    }
    .nav-links a:hover{background:var(--lavender-soft);}
    .nav.menu-open .menu-toggle .bi-list{display:none;}
    .nav.menu-open .menu-toggle .bi-x-lg{display:inline-block;}

    .hero{padding:42px 0 18px;}
    .hero-grid{
      grid-template-columns:minmax(0,0.9fr) minmax(0,1.1fr);
      gap:16px;
    }
    .hero-actions{
      flex-direction:column;
      align-items:flex-start;
      gap:12px;
    }
    .hero-actions .btn-store,
    .hero-actions .btn{width:min(100%,220px);}
    .hero p{font-size:0.9rem;margin-bottom:24px;}
    .phones{top:0;height:560px;}
    .phone{width:230px;height:486px;border-radius:29px;}
    .phone-screen{border-radius:24px;}
    .phone-main{width:250px;height:529px;}
    .phone-main .phone-screen{border-radius:26px;}
    .phone-side{left:-7%;top:10%;}
    .phone-side.right{right:-7%;left:auto;}
    .cta-banner{padding:38px 22px;}
    .download-final{padding:72px 0 48px;}
  }

  @media (max-width:599px){
    .hero{padding:28px 0 10px;}
    .hero-grid{grid-template-columns:minmax(0,0.92fr) minmax(0,1.08fr);gap:6px;align-items:start;}
    .hero h1{font-size:clamp(1.25rem,5.6vw,1.55rem);margin-bottom:11px;}
    .hero p{font-size:0.7rem;line-height:1.45;margin-bottom:15px;}
    .hero-extra{display:none;}
    .hero-actions{gap:8px;align-items:stretch;}
    .hero-actions .btn-store,
    .hero-actions .btn{width:100%;padding:9px 7px;font-size:0.65rem;}
    .hero-actions .btn-store{gap:6px;}
    .hero-actions .store-icon{width:19px;height:19px;}
    .phones{left:10px;height:340px;}
    .phone{width:112px;height:250px;border-radius:18px;padding:3px;}
    .phone-screen{border-radius:15px;}
    .phone-side:not(.right){
      width:112px;height:214px;
      left:84px;top:72px;right:auto;
      transform:rotate(2deg);
      transform-origin:bottom center;
      z-index:1;
    }
    .phone-main{
      width:112px;height:232px;
      left:42px;top:54px;
      transform:rotate(1deg);
      transform-origin:bottom center;
      z-index:2;
    }
    .phone-main .phone-screen{border-radius:16px;}
    .phone-side.right{
      left:0;top:36px;right:auto;
      transform:none;
      z-index:3;
    }
    .features-grid{gap:32px 18px;}
    .feature-icon{width:58px;height:58px;font-size:1.35rem;}
    .section-head{margin-bottom:42px;}
    .footer-grid{
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:28px 20px;
    }
    .footer-grid > div:first-child{grid-column:1 / -1;}
  }

  /* Tablet and intermediate widths */
  @media (min-width:600px) and (max-width:959px){
    .hero{padding:48px 0 24px;}
    .hero-grid{
      grid-template-columns:minmax(0,0.9fr) minmax(280px,1.1fr);
      gap:24px;
      align-items:center;
    }
    .hero h1{font-size:clamp(2rem,4.2vw,2.65rem);}
    .hero p{font-size:0.9rem;margin-bottom:24px;}
    .hero-actions{flex-direction:column;align-items:flex-start;gap:12px;}
    .hero-actions .btn-store,
    .hero-actions .btn{width:min(100%,220px);}
    .phones{
      left:0;
      top:0;
      height:clamp(430px,calc(36.2vw + 213px),560px);
    }
    .phone{
      width:clamp(175px,calc(12.5vw + 100px),220px);
      height:clamp(370px,calc(29.4vw + 194px),476px);
      border-radius:29px;
    }
    .phone-screen{border-radius:24px;}
    .phone-main{
      width:clamp(190px,calc(16.7vw + 90px),250px);
      height:clamp(402px,calc(35.3vw + 190px),529px);
      top:50%;left:50%;
      transform:translate(-50%,-50%);
    }
    .phone-main .phone-screen{border-radius:26px;}
    .phone-side{left:0;top:9%;}
    .phone-side.right{right:0;left:auto;}
  }

  /* Small desktop widths */
  @media (min-width:960px) and (max-width:1199px){
    .phones{
      left:0;
      height:clamp(560px,calc(35.4vw + 220px),645px);
    }
    .phone{
      width:clamp(230px,calc(14.58vw + 90px),265px);
      height:clamp(486px,calc(30.83vw + 190px),560px);
    }
    .phone-main{
      width:clamp(250px,calc(15.83vw + 98px),288px);
      height:clamp(529px,calc(33.75vw + 205px),610px);
    }
    .phone-side{left:-1%;}
    .phone-side.right{right:-1%;left:auto;}
  }

  @media (min-width:1200px){
    .phones{left:clamp(0px,calc((100vw - 1200px) / 2),155px);}
  }

  @media (max-width:360px){
    .nav{padding-inline:12px;gap:5px;}
    .logo-icon{width:34px;height:34px;}
    .logo .brand-watermark{width:88px;height:23px;}
    .logo .brand-watermark img{width:156px;left:-41px;top:-42px;}
    .nav-cta{padding:9px 10px;font-size:0.72rem;}
    .menu-toggle{width:40px;height:40px;}
  }

  .reveal{opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease;}
  .reveal.in{opacity:1; transform:none;}
