:root{
  /* Reza Primero palette */
  --bg-top: #141624;   /* dark navy/black */
  --bg-mid: #3B4D8A;   /* deep blue */
  --bg-bot: #7A96D6;   /* light blue */

  /* Foreground tuned for your new bg (still warm) */
  --fg: #ffffff;
  --muted: rgba(255,255,255,0.78);
  --muted-2: rgba(255,255,255,0.66);

  /* Cards / borders */
--card: rgba(255,255,255,0.06);
 --border: rgba(255,255,255,0.14);
  --shadow: 0 0 0 1px var(--border);
  --shadow-soft: 0 18px 60px rgba(0,0,0,0.40);

  --radius-xl: 56px;
  --radius-lg: 46px;
  --radius-md: 18px;

  --link-underline: rgba(255,255,255,0.20);

  /* Accents */
  --accent: #D5A794;       /* peach/salmon */
  --secondary: #7A96D6;    /* light blue */
  --primary: rgba(213,167,148,0.92);      /* button peach */
  --primary-hover: rgba(213,167,148,1);   /* button peach hover */

  /* Optional “ink” for dark text on peach button */
  --ink: #141624;
}

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  color: var(--fg);
  font: 20px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
   linear-gradient(180deg,
    #141624 0%,
    #3B4D8A 30%,
    #7A96D6 60%,
    #D5A794 100%);
}
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%,
      rgba(255,255,255,0.08),
      transparent 60%);
  pointer-events: none;
}
img{ max-width:100%; display:block; }

a{
  color: inherit;
  text-decoration:none;
  border-bottom: 2px solid var(--link-underline);
}
a:hover{ border-bottom-color: rgba(255,255,255,0.9); }

/* Header */
header{
  max-width: 620px;
  width: 100%;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
}

header .logo{
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
  background: rgba(20,22,36,0.35);
  display: grid;
  place-items: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
  overflow: hidden;
}

header .logo:hover{
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

header .logo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

header h1{
  font-weight: 900;
  font-size: 34px;
  color: var(--fg);
  margin: 26px auto 14px;
  letter-spacing: -0.02em;
}

header h2{
  font-weight: 500;
  font-size: 20px;
  color: var(--muted);
  margin: 0 auto 26px;
}

/* “App Store” button */
.apple-buttons{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  justify-content:center;
  align-items:center;
}

.store-btn{
  display:inline-flex;
  align-items:center;
  gap: 12px;
  height: 62px;
  padding: 0 18px;
  border-radius: 16px;
   background: linear-gradient(
    135deg,
    #D5A794,
    #7A96D6
  );
  color: #141624;
  border-bottom: none;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(8px);
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.store-btn:hover{
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.store-badge{
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(20,22,36,0.88); /* dark square + light glyph vibe */
  display:inline-block;
}

/* Cards */
.card{
  max-width: 976px;
  width: calc(100% - 32px);
  margin: 0 auto 40px;
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), var(--shadow-soft);
  overflow: visible;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.row{
  display:flex;
  gap: 80px;
  padding: 52px 80px 0;
  align-items: center;
}

/* Desktop alternating layout */
.row .shot{ order: 1; }
.row .paragraph{ order: 2; }

.row.reverse{ padding: 52px 80px 0; }
.row.reverse .paragraph{ order: 1; }
.row.reverse .shot{ order: 2; }

.paragraph{ flex: 1; }

.paragraph p{
  font-size: 22px;
  color: rgba(255,255,255,0.78);
}

.paragraph strong{
  color: var(--fg);
  font-weight: 900;
}

/* iPhone screenshots */
.shot{
  flex: 0 0 318px;
  align-self: flex-end;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.50));
  margin-bottom: 0;
}

.shot .frame{
  position: relative;
  width: 100%;
  padding-bottom: 122.012578%;
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  border: none;
  background: transparent;
}

.shot .frame img,
.shot .frame svg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

/* Wide card */
.wide{
  padding: 52px 60px 0;
}

.wide p{
  margin-bottom: 20px;
  color: var(--muted);
}

.wide .apple-buttons{
  margin-bottom: 40px;
}

.wide .wide-shot{
  width: 100%;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.50));
}

.wide .wide-shot .frame{
  position: relative;
  padding-bottom: 42.4757%;
  border-radius: 0;
  overflow: visible;
  border: none;
  background: transparent;
}

.wide .wide-shot .frame img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* FAQ */
.faq{
  max-width: 743px;
  width: calc(100% - 40px);
  margin: 60px auto 0;
}

.faq h2{
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 18px;
  color: var(--fg);
}

.faq .item{ margin-bottom: 34px; }

.faq .item .q{
  font-weight: 900;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--fg);
}

.faq .item p{
  margin: 0;
  color: var(--muted);
}

/* Footer */
footer{
  max-width: 743px;
  width: calc(100% - 40px);
  margin: 70px auto 40px;
  display:flex;
  flex-wrap:wrap;
  gap: 20px;
  font-weight: 600;
  font-size: 17px;
  color: rgba(255,255,255,0.70);
}

footer a{ color: rgba(255,255,255,0.70); }
footer a:hover{ color: rgba(255,255,255,0.92); }

/* Responsive */
@media (max-width: 760px){
  header{ margin: 32px auto 50px; }
  header h1{ font-size: 24px; }
  header h2{ font-size: 18px; }

  .card{ border-radius: var(--radius-lg); }

  .row, .row.reverse, .wide{
    flex-direction: column;
    gap: 32px;
    padding: 32px 32px 0;
  }

  .row > .paragraph{ order: 1 !important; }
  .row > .shot{ order: 2 !important; }
  .row.reverse > .paragraph{ order: 1 !important; }
  .row.reverse > .shot{ order: 2 !important; }

  .shot{
    align-self: center;
    max-width: 280px;
    width: 100%;
  }

  .paragraph p{ font-size: 19px; }

  .shot .frame{
    padding-bottom: 130%;
    overflow: hidden;
    border-radius: 26px 26px 0 0;
  }

  .wide .wide-shot .frame{
    padding-bottom: 62%;
    border-radius: 0;
    overflow: visible;
  }

  .wide .wide-shot .frame img{
    object-fit: contain;
  }
}
