:root{
  --brand-teal:#0041C7;
  --brand-teal-dark:#0D2159;
  --brand-ink:#17191F;
  --brand-mint:#D1F2E8;
  --brand-coral:#E04F40;
  --bg:#F9F9F9;
  --soft-aqua:#E6F9FA;
  --option:#D1D6EA;
  --text:#17191F;
  --muted:#565963;
  --border:rgba(23,25,31,.14);
  --card:#FFFFFF;
  --shadow:0 24px 70px rgba(0,65,199,.14);
  --radius:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(209,242,232,.95), transparent 34%),
    radial-gradient(circle at top right, rgba(209,214,234,.85), transparent 30%),
    linear-gradient(135deg,#D4FAFF 0%,#F2FFFF 52%,#D6F7FA 100%);
  min-height:100vh;
}

a{color:var(--brand-teal);text-decoration:none}
img{max-width:100%;display:block}

.page-shell{
  width:min(1120px,calc(100% - 32px));
  margin:0 auto;
}

/* MENU */

.ss-top-menu{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 36px));
  z-index:1000;

  display:grid;
  grid-template-columns:220px 1fr 220px;
  align-items:center;
  gap:20px;

  padding:12px 18px;

  background:rgba(255,255,255,.72);
  backdrop-filter:blur(22px);
  -webkit-backdrop-filter:blur(22px);
  
  background: var(--brand-teal);

  border:1px solid rgba(255,255,255,.85);
  border-radius:30px;

  box-shadow:
    0 24px 70px rgba(0,65,199,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.ss-top-menu::after{
  display:none;
}

.ss-logo{
  justify-self:start;
}

.ss-logo a,
.appmill-link{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  color:var(--brand-ink);
  text-decoration:none;
}

.appmill-logo{
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 16px rgba(0,65,199,.16));
}

.brand-tagline{
  font-size:12px;
  line-height:1.15;
  font-weight:850;
  color:#fff;
  white-space:normal;

}

.ss-nav-links{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  list-style:none;
  gap:6px;
  margin:0;
  padding:6px;

  background:linear-gradient(135deg,rgba(230,249,250,.92),rgba(255,255,255,.92));
  border:1px solid rgba(0,65,199,.10);
  border-radius:999px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,1),
    0 10px 30px rgba(0,65,199,.08);
}

.ss-nav-links a{
  display:block;
  padding:10px 18px;
  border-radius:999px;

  font-size:14px;
  font-weight:950;
  color:var(--brand-teal-dark);

  transition:.22s ease;
}

.ss-nav-links a:hover{
  background:rgba(255,255,255,.9);
  color:var(--brand-teal);
}

.ss-nav-links a.active{
  background:linear-gradient(135deg,#0041C7,#0A67F5);
  color:#fff;
  box-shadow:0 10px 24px rgba(0,65,199,.25);
}

.apps-dropdown{
  position:relative;
  justify-self:end;
}

.apps-dropdown-btn{
  height:50px;
  padding:0 24px;

  border:0;
  border-radius:999px;

  background:linear-gradient(135deg,#0041C7,#0A67F5);
  color:#fff;

  display:flex;
  align-items:center;
  gap:9px;

  font-size:14px;
  font-weight:950;
  cursor:pointer;

  box-shadow:
    0 14px 30px rgba(0,65,199,.24),
    inset 0 1px 0 rgba(255,255,255,.22);

  transition:.25s ease;
}

.apps-dropdown-btn:hover{
  transform:translateY(-2px);
  box-shadow:
    0 18px 38px rgba(0,65,199,.32),
    inset 0 1px 0 rgba(255,255,255,.25);
}

.dropdown-arrow{
  width:16px;
  height:16px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:.22s ease;
}

.apps-dropdown:hover .dropdown-arrow{
  transform:rotate(180deg);
}

.apps-dropdown-menu{
  display:none;
  position:absolute;
  right:0;
  top:calc(100% + 14px);
  width:320px;

  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(0,65,199,.10);
  border-radius:28px;
  padding:16px;

  box-shadow:
    0 28px 70px rgba(0,65,199,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.apps-dropdown.open .apps-dropdown-menu,
.apps-dropdown:hover .apps-dropdown-menu{
  display:block;
}

.apps-dropdown-title{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:950;
  color:var(--muted);
  margin:4px 8px 12px;
}

.apps-dropdown-item{
  display:flex;
  gap:13px;
  align-items:center;
  padding:12px;
  border-radius:20px;
  color:var(--brand-ink);
  transition:.22s ease;
}

.apps-dropdown-item:hover{
  background:linear-gradient(135deg,#E6F9FA,#FFFFFF);
  transform:translateX(2px);
}

.apps-dropdown-item img{
  width:46px;
  height:46px;
  border-radius:14px;
  object-fit:cover;
  background:var(--option);
  box-shadow:0 10px 22px rgba(0,65,199,.12);
}

.apps-dropdown-item strong{
  display:block;
  font-size:15px;
  color:var(--brand-teal);
}

.apps-dropdown-item span{
  display:block;
  font-size:12px;
  color:var(--muted);
  margin-top:3px;
  line-height:1.35;
}

.ss-menu-toggle{
  display:none;
  border:0;
  background:var(--brand-teal);
  border-radius:16px;
  width:46px;
  height:46px;
  padding:11px;
  cursor:pointer;
  box-shadow:0 12px 24px rgba(0,65,199,.22);
}

.ss-menu-toggle span{
  display:block;
  height:2px;
  background:#fff;
  margin:5px 0;
  border-radius:5px;
}

/* CONTENT */

.hero{
  padding:90px 0 34px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:44px;
  align-items:center;
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.8);
  border-radius:999px;
  padding:9px 13px;
  font-size:13px;
  font-weight:850;
  color:var(--brand-teal);
  box-shadow:0 12px 30px rgba(0,65,199,.08);
}

h1{
  font-size:clamp(42px,6vw,58px);
  margin:22px 0 18px;
  letter-spacing:-.055em;
  color:var(--brand-ink);
}

.gradient-text{
  background:linear-gradient(90deg,var(--brand-teal),var(--brand-teal-dark));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.lead{
  font-size:19px;
  line-height:1.65;
  color:var(--muted);
  max-width:650px;
  margin:0 0 26px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 20px;
  font-weight:900;
  border:1px solid transparent;
}

.btn-primary{
  background:var(--brand-teal);
  color:#fff;
  box-shadow:0 16px 35px rgba(0,65,199,.24);
}

.btn-secondary{
  background:#fff;
  color:var(--brand-teal);
  border-color:var(--border);
}

.phone-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.82);
  border-radius:42px;
  padding:18px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}

.app-preview{
  background:#fff;
  border-radius:32px;
  padding:20px;
  border:1px solid var(--border);
}

.preview-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.preview-header img{
  width:54px;
  height:54px;
  border-radius:14px;
}

.preview-title{
  font-weight:950;
  font-size:22px;
  color:var(--brand-teal);
}

.preview-subtitle{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
}

.format-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.format-tile{
  border:2px solid var(--border);
  background:linear-gradient(145deg,#fff,var(--soft-aqua));
  border-radius:18px;
  padding:14px;
  min-height:110px;
}

.format-tile b{font-size:13px}
.format-tile span{display:block;color:var(--muted);font-size:12px;margin-top:5px}

.shape{
  margin-top:12px;
  background:var(--option);
  border:2px dashed rgba(0,65,199,.34);
  border-radius:10px;
}

.shape.square{height:34px;width:34px}
.shape.story{height:56px;width:28px}
.shape.wide{height:28px;width:60px}

.section{padding:42px 0}

.section-title{
  font-size:clamp(30px,4vw,48px);
  letter-spacing:-.04em;
  line-height:1.05;
  margin:0 0 14px;
}

.section-lead{
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
  max-width:760px;
  margin:0 0 24px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.86);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 16px 50px rgba(0,65,199,.09);
}

.card-icon{
  width:48px;
  height:48px;
  border-radius:16px;
  background:var(--brand-teal);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:950;
  margin-bottom:16px;
}

.card h3{margin:0 0 10px;font-size:20px}
.card p,
.content-card p,
.content-card li{
  color:var(--muted);
  line-height:1.7;
}

.content-card{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:34px;
  margin:40px auto;
  max-width:930px;
}

.content-card h1{
  font-size:clamp(36px,5vw,58px);
  margin-top:0;
}

.content-card h2{
  margin-top:34px;
  color:var(--brand-teal);
  font-size:24px;
}

.content-card ul{padding-left:22px}

.mini-note{
  background:var(--soft-aqua);
  border:1px solid rgba(0,65,199,.16);
  padding:18px;
  border-radius:20px;
  color:var(--brand-ink);
  font-weight:700;
}
.purchase-box{
    display:inline-flex;
    flex-direction:column;

    margin-top:30px;

    padding:18px 24px;

    background:#fff;

    border-radius:22px;

    border:1px solid rgba(0,65,199,.08);

    box-shadow:
        0 18px 45px rgba(0,65,199,.10);
}

.purchase-title{
    font-size:14px;
    font-weight:800;
    color:#5F6270;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.purchase-price{
    margin-top:4px;
    font-size:44px;
    font-weight:900;
    line-height:1;
    color:#0041C7;
    letter-spacing:-.04em;
}

.purchase-price span{
    font-size:18px;
    font-weight:700;
    color:#5F6270;
    margin-left:4px;
}

.purchase-subtitle{
    margin-top:10px;
    font-size:14px;
    font-weight:700;
    color:#5F6270;
}

.purchase-card{

    display:flex;
    align-items:center;

    margin-top:34px;

    width:520px;
    max-width:100%;

    overflow:hidden;

    border-radius:26px;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(18px);

    box-shadow:
        0 26px 70px rgba(0,65,199,.12);

}

.purchase-left{

    width:150px;
    align-self:stretch;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:24px;

    background:linear-gradient(
        135deg,
        #0041C7,
        #2D63E8
    );

}

.purchase-tag{

    color:white;

    font-size:18px;

    font-weight:900;

    line-height:1.25;

    text-align:center;

    letter-spacing:-.02em;

}

.purchase-right{

    flex:1;

    padding:24px 28px;

}

.purchase-small{

    font-size:14px;

    font-weight:900;

    color:#0041C7;

    letter-spacing:.18em;

}

.purchase-price{

    margin-top:4px;

    font-size:62px;

    font-weight:900;

    line-height:.95;

    color:#0041C7;

    letter-spacing:-.05em;

}

.purchase-price span{

    font-size:24px;

    color:#5F6270;

}

.purchase-info{

    margin-top:12px;

    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;

    font-size:15px;

    font-weight:750;

    color:#5F6270;

}

.purchase-info span{

    width:6px;
    height:6px;

    border-radius:999px;

    background:#2D63E8;

}

.site-footer{
  width:min(1180px,calc(100% - 24px));
  margin:54px auto 18px;
  background:rgba(23,25,31,.94);
  color:#fff;
  border-radius:30px;
  padding:24px;
}

.footer-inner{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:20px;
  align-items:center;
}

.site-footer p{
  margin:4px 0 0;
  color:rgba(255,255,255,.7);
  font-size:13px;
}

.site-footer a{
  color:#fff;
  font-weight:750;
}

.footer-center{text-align:center}
.footer-right{text-align:right}

.menu-placeholder{min-height:118px}

/* ABOUT PAGE */

.about-page{
  padding-bottom:70px;
}

.about-hero-new{
  padding:48px 0 26px;
}

.about-hero-copy{
  max-width:980px;
}

.about-hero-copy h1{
  font-size:clamp(54px,8vw,104px);
  line-height:.9;
  letter-spacing:-.075em;
  margin:22px 0 22px;
  color:var(--brand-ink);
}

.about-hero-copy p{
  max-width:850px;
  font-size:21px;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

.about-hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.about-hero-pills span{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.85);
  color:var(--brand-teal-dark);
  font-size:13px;
  font-weight:850;
  box-shadow:0 12px 28px rgba(0,65,199,.07);
}

.video-showcase{
  margin:34px 0 76px;
  padding:30px;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:center;

  background:
    radial-gradient(circle at top left, rgba(255,255,255,.28), transparent 42%),
    linear-gradient(135deg,#0041C7,#0A67F5);

  border-radius:44px;
  box-shadow:0 34px 90px rgba(0,65,199,.26);
  overflow:hidden;
  justify-items:center;
    text-align:center;
}

.video-copy{
  padding:18px;
  color:#fff;
}

.video-label{
  display:inline-flex;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.22);
  font-size:12px;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.video-copy h2{
  font-size:clamp(36px,5vw,64px);
  line-height:.95;
  letter-spacing:-.055em;
  margin:20px 0 16px;
}

.video-copy p{
  max-width:430px;
  font-size:17px;
  line-height:1.65;
  color:rgba(255,255,255,.82);
  margin:0;
}

.video-frame{
    width:100%;
    max-width:420px;

    background:#fff;
    padding:12px;

    border-radius:36px;

    box-shadow:
        0 30px 80px rgba(0,65,199,.18);
}

.video-frame video{
    width:100%;
    display:block;

    border-radius:26px;
}

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

.section-heading{
  max-width:820px;
  margin-bottom:28px;
}

.section-heading h2{
  font-size:clamp(36px,5vw,62px);
  line-height:.96;
  letter-spacing:-.06em;
  margin:18px 0 14px;
  color:var(--brand-ink);
}

.section-heading p{
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  margin:0;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature-card{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  padding:26px;
  box-shadow:0 18px 50px rgba(0,65,199,.09);
}

.feature-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#0041C7,#0A67F5);
  color:#fff;
  font-size:14px;
  font-weight:950;
  margin-bottom:18px;
}

.feature-card h3{
  margin:0 0 10px;
  font-size:21px;
  letter-spacing:-.025em;
}

.feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.split-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.split-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.9);
  border-radius:34px;
  padding:34px;
  box-shadow:0 20px 60px rgba(0,65,199,.09);
}

.split-card h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1;
  letter-spacing:-.05em;
  margin:18px 0 16px;
}

.split-card p{
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
}

.dark-card{
  background:
    radial-gradient(circle at top left, rgba(209,242,232,.22), transparent 42%),
    linear-gradient(135deg,#0D2159,#0041C7);
  color:#fff;
}

.dark-card h2,
.dark-card p{
  color:#fff;
}

.dark-card p{
  color:rgba(255,255,255,.82);
}

.light-badge{
  background:rgba(255,255,255,.16);
  color:#fff;
  border-color:rgba(255,255,255,.24);
}

.clean-list,
.audience-list{
  margin:18px 0 0;
  padding:0;
  list-style:none;
}

.clean-list li,
.audience-list li{
  position:relative;
  padding-left:26px;
  margin-bottom:12px;
  line-height:1.45;
  color:inherit;
}

.clean-list li::before,
.audience-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--brand-teal);
}

.dark-card .clean-list li::before{
  background:#D1F2E8;
}

.flow-card{
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.9);
  border-radius:34px;
  padding:34px;
  box-shadow:0 20px 60px rgba(0,65,199,.09);
}

.flow-card ol{
  columns:2;
  column-gap:46px;
  margin:0;
  padding-left:22px;
}

.flow-card li{
  break-inside:avoid;
  margin-bottom:13px;
  color:var(--brand-ink);
  line-height:1.55;
}

.info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.info-card{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  padding:28px;
  box-shadow:0 16px 45px rgba(0,65,199,.08);
}

.info-card h3{
  margin:0 0 12px;
  font-size:23px;
  letter-spacing:-.03em;
}

.info-card p,
.info-card li{
  color:var(--muted);
  line-height:1.65;
}

.info-card ul{
  padding-left:20px;
}
.privacy-title{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:24px;
}

.privacy-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    flex-shrink:0;
}

.privacy-title h1{
    margin:0;
    font-size:48px;
    font-weight:900;
    letter-spacing:-.04em;
    line-height:1;
}
.appstore-btn{

    display:inline-flex;
    align-items:center;
    gap:18px;

    margin-top:26px;

    padding:16px 28px;

    border-radius:18px;

    background:linear-gradient(
        180deg,
        #0041C7 0%,
        #000 100%
    );

    color:white;

    text-decoration:none;

    box-shadow:
        0 18px 40px rgba(0,0,0,.20);

    transition:.25s;

}

.appstore-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 24px 55px rgba(0,0,0,.28);

}

.appstore-icon{

    width:34px;
    height:34px;

    fill:white;

    flex-shrink:0;

}

.appstore-text{

    display:flex;
    flex-direction:column;

    line-height:1.05;

}

.appstore-text .small{

    font-size:12px;

    font-weight:600;

    opacity:.82;

}

.appstore-text .big{

    margin-top:2px;

    font-size:24px;

    font-weight:800;

    letter-spacing:-.02em;

}

@media(max-width:860px){
  .about-hero-new{
    padding-top:34px;
  }

  .video-showcase,
  .split-section,
  .feature-grid,
  .info-grid{
    grid-template-columns:1fr;
  }

  .video-showcase{
    padding:20px;
    border-radius:32px;
  }

  .video-copy{
    padding:6px;
  }

  .flow-card ol{
    columns:1;
  }

  .split-card,
  .flow-card,
  .info-card,
  .feature-card{
    padding:24px;
  }
}

/* AUTO MEDIA RESIZER MOCKUP PAGE */

.amr-page{
  width:min(1180px,calc(100% - 36px));
  margin:0 auto;
  padding:42px 0 30px;
}

.amr-brand{
  text-align:center;
  margin-bottom:34px;
}

.amr-brand a{
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:var(--muted);
  text-decoration:none;
}

.amr-brand img{
  width:80%;
  height:auto;
  margin-top:-20px;
}

.amr-brand span{
  font-size:14px;
  font-weight:750;
}

.amr-hero{
  display:grid;
  grid-template-columns:1fr 390px;
  gap:56px;
  align-items:center;
  text-align:left;
  margin-bottom:64px;
}

.amr-app-icon{
  width:96px;
  height:96px;
  border-radius:26px;
  box-shadow:0 20px 45px rgba(0,65,199,.22);
  margin-bottom:22px;
}

.amr-hero h1{
  font-size:clamp(52px,7vw,86px);
  line-height:.92;
  letter-spacing:-.075em;
  margin:0 0 12px;
}

.amr-hero h2{
  margin:0 0 18px;
  font-size:clamp(24px,3vw,34px);
  color:var(--brand-teal);
  letter-spacing:-.04em;
}

.amr-hero p{
  max-width:650px;
  font-size:19px;
  line-height:1.65;
  color:var(--muted);
  margin:0;
}

.amr-phone-wrap{
  text-align:center;
}

.amr-phone{
  position:relative;
  margin:40px auto;
  padding:18px;
  border-radius:48px;
  background:#10131c;
  box-shadow:
    0 42px 90px rgba(0,65,199,.24),
    0 0 0 7px rgba(255,255,255,.75);
}

.amr-dynamic-island{
  position:absolute;
  z-index:3;
  top:16px;
  left:50%;
  transform:translateX(-50%);
  width:92px;
  height:26px;
  border-radius:999px;
  background:#07080c;
}

.amr-phone video{
  width:100%;
  display:block;
  border-radius:34px;
  background:#000;
  overflow:hidden;
}

.tap-note{
  margin-top:18px;
  color:#3d64c8;
  font-size:17px;
  font-weight:750;
  transform:rotate(-4deg);
}

.amr-feature-strip{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  background:rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.95);
  border-radius:34px;
  box-shadow:0 24px 70px rgba(0,65,199,.10);
  overflow:hidden;
  margin-bottom:36px;
}

.amr-feature-strip article{
  padding:28px 20px;
  text-align:center;
  border-right:1px solid rgba(0,65,199,.10);
}

.amr-feature-strip article:last-child{
  border-right:0;
}

.amr-line-icon{
  font-size:34px;
  color:var(--brand-teal);
  margin-bottom:14px;
  font-weight:900;
}

.amr-feature-strip h3{
  margin:0 0 9px;
  font-size:16px;
  letter-spacing:-.02em;
}

.amr-feature-strip p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.amr-two-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  margin:36px 0;
}

.amr-info-card{
  background:linear-gradient(135deg,rgba(255,255,255,.9),rgba(230,249,250,.85));
  border:1px solid rgba(255,255,255,.95);
  border-radius:34px;
  padding:36px;
  box-shadow:0 20px 60px rgba(0,65,199,.08);
}

.amr-info-card.lavender{
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(232,223,255,.8));
}

.amr-big-icon{
  font-size:42px;
  color:var(--brand-teal);
  margin-bottom:12px;
}

.amr-info-card h2{
  margin:0 0 12px;
  font-size:28px;
  letter-spacing:-.04em;
}

.amr-info-card p{
  color:var(--muted);
  line-height:1.65;
  margin:0 0 18px;
}

.amr-info-card ul{
  list-style:none;
  margin:0;
  padding:0;
}

.amr-info-card li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
  color:var(--brand-ink);
  font-weight:650;
}

.amr-info-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--brand-teal);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:12px;
}

.amr-how{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.95);
  border-radius:34px;
  padding:34px;
  box-shadow:0 20px 60px rgba(0,65,199,.08);
  margin:36px 0;
}

.amr-how h2{
  margin:0 0 30px;
  font-size:30px;
  letter-spacing:-.04em;
}

.amr-steps{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:16px;
  text-align:center;
}

.amr-steps span{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  border-radius:50%;
  background:var(--brand-teal);
  color:#fff;
  font-weight:900;
}

.amr-steps h3{
  margin:0 0 6px;
  font-size:15px;
}

.amr-steps p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.amr-footer{
  border-top:1px solid rgba(0,65,199,.14);
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--muted);
  font-size:14px;
}

.amr-footer nav{
  display:flex;
  gap:28px;
}

.amr-footer a{
  color:var(--brand-teal);
  font-weight:700;
}

.menu-placeholder{
  min-height:0 !important;
}

@media(max-width:900px){
  .amr-hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .amr-app-icon{
    margin-left:auto;
    margin-right:auto;
  }

  .amr-hero p{
    margin-left:auto;
    margin-right:auto;
  }

  .amr-feature-strip,
  .amr-steps{
    grid-template-columns:repeat(2,1fr);
  }

  .amr-two-cards{
    grid-template-columns:1fr;
  }
}

/* MOBILE */

@media(max-width:860px){
  .ss-top-menu{
    top:12px;
    width:calc(100% - 24px);
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:12px 14px;
    border-radius:24px;
  }

  .appmill-logo{
    width:74px;
    height:auto;
  }

  .brand-tagline{
    display:block;
    font-size:11px;
    max-width:130px;
  }

  .ss-menu-toggle{
    display:block;
    margin-left:auto;
  }

  .ss-nav-links,
  .apps-dropdown{
    display:none;
    width:100%;
  }

  .ss-top-menu.menu-open .ss-nav-links{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    margin-top:14px;
    border-radius:22px;
  }

  .ss-top-menu.menu-open .apps-dropdown{
    display:block;
    margin-top:10px;
  }

  .ss-nav-links a{
    padding:13px 16px;
    text-align:center;
  }

  .apps-dropdown-btn{
    width:100%;
    justify-content:center;
  }

  .apps-dropdown-menu{
    position:static;
    width:100%;
    margin-top:10px;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:90px;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .footer-inner{
    grid-template-columns:1fr;
    text-align:left;
  }

  .footer-center,
  .footer-right{
    text-align:left;
  }

  .content-card{
    padding:24px;
  }

  .format-grid{
    grid-template-columns:1fr 1fr;
  }
   .about-hero-copy h1{
    font-size:52px;
  }

  .about-hero-copy p{
    font-size:18px;
  }

  .about-hero-pills span{
    width:100%;
    justify-content:center;
  }
    .amr-page{
    width:min(100% - 24px,1180px);
    padding-top:28px;
  }

  .amr-brand img{
    width:120px;
  }

  .amr-phone{
    width:290px;
  }

  .amr-feature-strip,
  .amr-steps{
    grid-template-columns:1fr;
  }

  .amr-feature-strip article{
    border-right:0;
    border-bottom:1px solid rgba(0,65,199,.10);
  }

  .amr-footer{
    flex-direction:column;
    text-align:center;
  }

  .amr-footer nav{
    justify-content:center;
    flex-wrap:wrap;
  }
}

@media(max-width:520px){
  .page-shell{
    width:min(100% - 22px,1120px);
  }

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

  .format-grid{
    grid-template-columns:1fr;
  }

  .phone-card{
    border-radius:30px;
    padding:12px;
  }
}