 /* ===================== Design tokens ===================== */
  #am-hero{
    --am-navy-deep:#07131f;
    --am-navy:#0c2436;
    --am-teal:#1abc9c;
    --am-teal-light:#3fd9bd;
    --am-white:#ffffff;
    --am-off-white:rgba(255,255,255,.82);
    --am-muted:rgba(255,255,255,.62);
    --am-border:rgba(255,255,255,.14);
    --font-display:'Poppins','Segoe UI',system-ui,-apple-system,sans-serif;
    --font-body:'Inter','Segoe UI',system-ui,-apple-system,sans-serif;
  }

  #am-hero, #am-hero *{ box-sizing:border-box; }

  #am-hero{
    position:relative;
    width:100%;
    overflow:hidden;
    font-family:var(--font-body);
    background:var(--am-navy-deep);
    isolation:isolate;
  }

  /* ===================== Background ===================== */
  .am-hero__bg{
    position:absolute;
    inset:0;
    z-index:0;
  }
  .am-hero__bg-img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center 30%;
    display:block;
  }
  .am-hero__overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(115deg, rgba(4,15,26,.97) 0%, rgba(6,20,33,.92) 32%, rgba(8,28,43,.72) 55%, rgba(10,32,48,.5) 75%, rgba(12,36,54,.4) 100%),
      linear-gradient(to top, rgba(3,10,18,.85) 0%, rgba(3,10,18,0) 22%);
  }

  /* ===================== Inner layout ===================== */
  .am-hero__inner{
    position:relative;
    z-index:1;
    max-width:1360px;
    margin:0 auto;
    padding:96px 48px 84px;
    display:grid;
    grid-template-columns:1fr 1.15fr;
    align-items:start;
    gap:24px;
    min-height:640px;
  }

  /* ===================== Copy column ===================== */
  .am-hero__content{ max-width:640px; }

  .am-hero__eyebrow{
    color:var(--am-teal-light);
    font-family:var(--font-display);
    font-weight:600;
    font-size:15px;
    letter-spacing:.02em;
    margin:0 0 18px;
  }

  .am-hero__title{
    font-family:var(--font-display);
    font-weight:700;
    color:var(--am-white);
    font-size:clamp(32px, 3.4vw, 46px);
    line-height:1.18;
    letter-spacing:-.01em;
    margin:0 0 22px;
  }

  .am-hero__desc{
    color:var(--am-off-white);
    font-size:16px;
    line-height:1.7;
    margin:0 0 18px;
    max-width:560px;
  }

  .am-hero__subline{
    color:var(--am-teal-light);
    font-weight:600;
    font-size:15px;
    margin:0 0 34px;
  }

  /* ===================== CTA buttons ===================== */
  .am-hero__cta{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
  }

  .am-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    border-radius:10px;
    padding:11px 20px;
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
    line-height:1.15;
  }
  .am-btn:hover{ transform:translateY(-2px); }

  .am-btn--store, .am-btn--play{
    background:#ffffff;
    color:#0c2436;
  }
  .am-btn__icon{ width:24px; height:24px; flex:none; }
  .am-btn--play .am-btn__icon{ color:#0c2436; }
  .am-btn__text{ display:flex; flex-direction:column; }
  .am-btn__small{ font-size:10px; font-weight:500; opacity:.75; }
  .am-btn__big{ font-size:15px; font-weight:700; font-family:var(--font-display); }

  .am-btn--outline{
    background:transparent;
    border:1.5px solid rgba(255,255,255,.35);
    color:var(--am-white);
  }
  .am-btn--outline:hover{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.6);
  }
  .am-btn--outline .am-btn__icon--search{ width:19px; height:19px; }
  .am-btn--outline .am-btn__big{ font-size:15px; }

  /* ===================== Phones ===================== */
  .am-hero__phones{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:22px;
  }

  .am-phone{
    position:relative;
    flex:none;
  }
  .am-phone--1{ transform:translateY(38px) scale(.94); z-index:1; }
  .am-phone--2{ transform:translateY(0) scale(1.03); z-index:2; }
  .am-phone--3{ transform:translateY(56px) scale(.9); z-index:1; }

  .am-phone__frame{
    width:206px;
    height:420px;
    background:#0a0a0a;
    border-radius:34px;
    padding:10px;
    box-shadow:
      0 25px 60px -12px rgba(0,0,0,.65),
      0 8px 20px rgba(0,0,0,.45),
      0 0 0 1.5px rgba(255,255,255,.08);
    position:relative;
  }
  .am-phone__screen{
    width:100%;
    height:100%;
    border-radius:26px;
    overflow:hidden;
    position:relative;
    background:#eef1f4;
  }
  .am-phone__screen img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    transform:translateX(100%);
    transition:transform .8s cubic-bezier(.65,0,.35,1);
    z-index:1;
  }
  .am-phone__screen img.is-active{
    transform:translateX(0);
    z-index:3;
  }
  .am-phone__screen img.is-leaving{
    transform:translateX(-100%);
    z-index:2;
  }
  .am-phone__screen img.no-transition{
    transition:none;
  }

  /* ===================== Trust strip ===================== */
  .am-hero__trust{
    position:relative;
    z-index:1;
    background:rgba(3,14,24,.55);
    border-top:1px solid var(--am-border);
    backdrop-filter:blur(6px);
  }
  .am-hero__trust-inner{
    max-width:1360px;
    margin:0 auto;
    padding:18px 48px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:14px 28px;
  }
  .am-trust-item{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:var(--am-off-white);
    font-size:13.5px;
    font-weight:500;
    white-space:nowrap;
  }
  .am-trust-item svg{
    width:16px;
    height:16px;
    color:var(--am-teal-light);
    flex:none;
  }

  /* ===================== Responsive ===================== */
  @media (max-width:1100px){
    .am-hero__inner{
      grid-template-columns:1fr;
      padding:72px 32px 56px;
      min-height:auto;
    }
    .am-hero__content{ max-width:100%; text-align:center; margin:0 auto; }
    .am-hero__cta{ justify-content:center; }
    .am-hero__phones{ margin-top:52px; }
    .am-phone__frame{ width:180px; height:368px; }
  }

  @media (max-width:640px){
    .am-hero__inner{ padding:56px 20px 40px; }
    .am-hero__title{ font-size:28px; }
    .am-hero__desc{ font-size:14.5px; }
    .am-hero__phones{ gap:10px; padding-bottom:10px; }
    .am-phone__frame{ width:118px; height:242px; border-radius:24px; padding:6px; }
    .am-phone__screen{ border-radius:18px; }
    .am-phone--1{ transform:translateY(22px) scale(1); }
    .am-phone--2{ transform:translateY(0) scale(1.06); }
    .am-phone--3{ transform:translateY(34px) scale(1); }
    .am-hero__trust-inner{ justify-content:center; padding:16px 20px; }
    .am-trust-item{ font-size:12px; }
  }

   #am-daily-worship-tools{
    --am-navy-deep:#07131f;
    --am-navy:#0c2436;
    --am-teal:#1abc9c;
    --am-teal-dark:#129478;
    --am-teal-tint:#eaf8f5;
    --am-ink:#0c2436;
    --am-ink-soft:#5b6d78;
    --am-border:#e7edec;
    --font-display:'Poppins','Segoe UI',system-ui,-apple-system,sans-serif;
  }
  #am-daily-worship-tools, #am-daily-worship-tools *{ box-sizing:border-box; }

  .am-dwt{
    width:100%;
    background:
      radial-gradient(1100px 420px at 12% -10%, rgba(26,188,156,.08), transparent 60%),
      #fbfdfc;
    font-family:var(--font-display);
    padding:80px 0;
  }

  .am-dwt__inner{
    max-width:1400px;
    margin:0 auto;
    padding:0 30px;
  }

  /* ---------- Header ---------- */
  .am-dwt__header{
    max-width:680px;
    margin:0 0 44px;
  }
  .am-dwt__eyebrow{
    display:inline-block;
    color:var(--am-teal-dark);
    font-weight:600;
    font-size:14px;
    letter-spacing:.06em;
    text-transform:uppercase;
    margin:0 0 14px;
    position:relative;
    padding-left:30px;
  }
  .am-dwt__eyebrow::before{
    content:"";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    width:20px;
    height:2px;
    background:var(--am-teal);
  }
  .am-dwt__title{
    font-weight:700;
    color:var(--am-navy);
    font-size:clamp(26px, 2.8vw, 38px);
    line-height:1.28;
    letter-spacing:-.01em;
    margin:0;
  }

  /* ---------- Grid ---------- */
  .am-dwt__grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
  }

  /* ---------- Card ---------- */
  .am-fcard{
    display:flex;
    align-items:center;
    background:#ffffff;
    border:1px solid var(--am-border);
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 4px 16px rgba(12,36,54,.05);
    transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    padding:22px 24px;
    gap:22px;
  }
  .am-fcard:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 38px -16px rgba(12,36,54,.16);
    border-color:rgba(26,188,156,.32);
  }

  .am-fcard__text{
    flex:1.3;
    display:flex;
    flex-direction:column;
    min-width:0;
  }

  /* Icon + heading, single horizontal row */
  .am-fcard__head{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:10px;
  }
  .am-fcard__icon{
    width:38px;
    height:38px;
    border-radius:11px;
    background:var(--am-teal-tint);
    color:var(--am-teal-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    flex:none;
  }
  .am-fcard__icon svg{ width:20px; height:20px; }

  .am-fcard__title{
    font-weight:700;
    color:var(--am-navy);
    font-size:18px;
    margin:0;
    letter-spacing:-.01em;
  }

  .am-fcard__desc{
    color:var(--am-ink-soft);
    font-size:13.5px;
    line-height:1.6;
    margin:0 0 12px;
  }

  .am-fcard__list{
    list-style:none;
    margin:0 0 14px;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:6px;
  }
  .am-fcard__list li{
    position:relative;
    padding-left:20px;
    color:var(--am-ink);
    font-size:12.5px;
    font-weight:500;
    line-height:1.5;
  }
  .am-fcard__list li::before{
    content:"";
    position:absolute;
    left:0;
    top:6px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:var(--am-teal);
  }

  .am-fcard__link{
    margin-top:auto;
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--am-teal-dark);
    font-weight:600;
    font-size:13.5px;
    text-decoration:none;
    width:fit-content;
    transition:gap .25s ease, color .25s ease;
  }
  .am-fcard__link svg{ width:15px; height:15px; transition:transform .25s ease; }
  .am-fcard__link:hover{ color:var(--am-navy); gap:10px; }
  .am-fcard__link:hover svg{ transform:translateX(2px); }

  /* ---------- Visual: clean screenshot, no container/background ---------- */
  .am-fcard__visual{
    flex:.85;
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:0;
  }
  .am-fcard__visual img{
    width:100%;
    max-width:150px;
    height:auto;
    max-height:230px;
    object-fit:cover;
    object-position:top center;
    border-radius:16px;
    display:block;
    box-shadow:0 16px 32px -10px rgba(12,36,54,.28);
    transition:transform .3s ease;
  }
  .am-fcard:hover .am-fcard__visual img{ transform:translateY(-4px); }

  /* ---------- Responsive ---------- */
  @media (max-width:1024px){
    .am-fcard{ padding:20px; gap:18px; }
  }

  @media (max-width:860px){
    .am-dwt__grid{ grid-template-columns:1fr; }
    .am-fcard{ flex-direction:column; text-align:left; }
    .am-fcard__visual{ order:-1; margin-bottom:6px; }
    .am-fcard__visual img{ max-width:120px; max-height:190px; }
  }

  @media (max-width:480px){
    .am-dwt__inner{ padding:0 20px; }
    .am-dwt__title{ font-size:24px; }
    .am-fcard{ padding:18px; }
  }