:root {
  --dark: #080713;
  --ink: #15121f;
  --muted: #777385;
  --cream: #fff7e8;
  --pink: #ff4fd8;
  --purple: #6f35ff;
  --gold: #efc648;
  --cyan: #5df4ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
}
a {
    color:#3c68e6;
}

a:visited {
    color:#3c68e6;
}

.container {
   width:min(1380px, calc(100% - 60px));
  margin: 0 auto;
}

.hero-duo {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 110px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(255, 79, 216, 0.35), transparent 34%),
    radial-gradient(circle at bottom right, rgba(93, 244, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #090714 0%, #1a102e 48%, #3d1c70 100%);
  color: white;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.92;
}

.hero-copy h1 span {
  display: block;
  color: #ffd9f7;
}

.hero-text {
  max-width: 610px;
  margin: 28px 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary{

    background:linear-gradient(
        135deg,
        #7A3EF0,
        #A566FF
    );

    color:white;

    border:none;

    box-shadow:
        0 15px 35px rgba(122,62,240,.30);

    transition:.25s ease;
}

.btn.primary:hover{

    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #8752F4,
        #B67AFF
    );

    box-shadow:
        0 20px 45px rgba(122,62,240,.45);

}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.app-duo {
  display: grid;
  gap: 24px;
  transform: rotate(-2deg);
}

.app-card {
  padding: 30px;
  border-radius: 36px;
  min-height: 280px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.app-card img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  margin-bottom: 22px;
}

.app-card h2 {
  margin: 0 0 12px;
  font-size: 34px;
}

.app-card p {
  font-size: 17px;
  line-height: 1.5;
}

.app-label {
  margin: 0 0 6px;
  font-size: 12px !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-card {
    background: linear-gradient(
        145deg,
        #F7F1FF 0%,
        #E9DDFF 35%,
        #D7C5FF 70%,
        #C6A9FF 100%
    );

    color: #22153F;
}
.creator-btn{

    background:#7A3EF0;
    color:white;

    box-shadow:
        0 10px 25px rgba(122,62,240,.25);

}

.creator-btn:hover{

    background:#8A52FF;

    transform:translateY(-2px);

}
.viewer-card {
    margin-left: 60px;

    background: linear-gradient(
        145deg,
        #2A1B52 0%,
        #44308C 45%,
        #6A46C9 100%
    );

    color: white;

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 24px 70px rgba(18, 10, 45, .35),
        inset 0 1px rgba(255,255,255,.08);
}

.viewer-card .app-label{
    color:#CDB8FF;
}
.viewer-card h2{
    color:white;
}

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

    background:white;

    color:#7A3EF0;

    border:2px solid rgba(122,62,240,.20);

}

.viewer-btn:hover{

    background:#7A3EF0;

    color:white;

    transform:translateY(-2px);

}
.store-badge{

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

    margin-top:18px;

    padding:10px 18px;

    border-radius:14px;

    text-decoration:none;

    background:white;

    border:1px solid #7A3EF0;

    box-shadow:
        0 10px 25px rgba(30,20,70,.08);

    transition:.25s ease;

}

.store-badge:hover{

    transform:translateY(-2px);

    border-color:#7A3EF0;

    box-shadow:
        0 15px 35px rgba(122,62,240,.18);

}

.store-icon{

    width:26px;
    height:26px;

    stroke:#7A3EF0;
    stroke-width:2;
    fill:none;

    flex-shrink:0;

}

.store-badge small{

    display:block;

    font-size:10px;

    color:#777;

    line-height:1;

}

.store-badge strong{

    display:block;

    margin-top:2px;

    font-size:15px;

    color:#19112F;

}
.app-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
}

.creator-card img{
    width:170px;
    height:170px;
    object-fit:contain;
    flex-shrink:0;
}
.creator-card h2{
    font-size:56px;
    margin:14px 0 22px;
}

.creator-card p{
    font-size:22px;
    line-height:1.55;
}
.creator-card img{

    width:175px;

    transform:rotate(3deg);

    filter:
        drop-shadow(0 18px 35px rgba(111,53,255,.22));

}
.app-copy{
    width:calc(100% - 240px);
}

.section {
  padding: 40px 0;
}

.narrow {
  max-width: 820px;
}
.story-section{
    background:#FCFBFF;
}

.flow-section{
    background:#efe8ff;
}
.story-section h2,
.flow-section h2,
.audience-box h2,
.cta-final h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
}
.audience-box p
{
  font-size: 22px;
  line-height: 1.55;
  color:#fff;
}

.story-section p,
.cta-final p {
  font-size: 22px;
  line-height: 1.55;
  color: var(--muted);
}

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

.split-panel {
  padding: 44px;
  border-radius: 40px;
}

.split-panel h2 {
  margin: 0 0 24px;
  font-size: 42px;
  line-height: 1;
}

.split-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-panel li {
  padding: 15px 0;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dark-panel {
  background: #101018;
  color: white;
}

.light-panel {
  background: white;
  color: var(--ink);
  box-shadow: 0 25px 70px rgba(20, 16, 31, 0.08);
}

.light-panel li {
  border-bottom-color: rgba(20, 16, 31, 0.12);
}

.center {
  text-align: center;
}

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

.flow-card {
  padding: 30px;
  border-radius: 34px;
  background: white;
  box-shadow: 0 24px 60px rgba(20, 16, 31, 0.08);
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 34px;
  font-size: 52px;
  font-weight: 950;
  color: var(--purple);
}

.flow-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

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

.audience-box{

    padding:70px;

    border-radius:42px;

    background:
        linear-gradient(
            135deg,
            #5E2ECF 0%,
            #7A3EF0 55%,
            #A566FF 100%
        );

    color:white;

    box-shadow:
        0 30px 70px rgba(111,53,255,.25);

}
.mini-download{

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

    margin-top:18px;

    padding:10px 18px;

    border-radius:999px;

    font-size:14px;
    font-weight:800;

    text-decoration:none;

    transition:.25s ease;

}
.cta-final {
  padding: 110px 0;
  text-align: center;
  background: #080713;
  color: white;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.7);
}

.center-buttons {
  justify-content: center;
  margin-top: 28px;
}
.appstore-btn {
   display:flex;
  align-items: center;
     gap:10px;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid #a855f7;
  border-radius: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.5),
    0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.25s ease;
   justify-self:end;
   
}

.appstore-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(139, 92, 246, 0.2);
}

.appstore-btn:active {
  transform: scale(0.97);
}

.appstore-btn svg {
  margin-right: 6px;
  opacity: 0.9;
  color: #a855f7;
  transition: all 0.25s ease;
}

.appstore-btn:hover svg {
  color: #c084fc;
  transform: translateX(4px);
}

.appstore-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.chevron-icon {
  width: 36px;
  height: 36px;
  display: inline-block;
  flex-shrink: 0;
  fill: currentColor;
  color: #a855f7;
}
.light-hero {
  min-height: 92vh;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, .22), transparent 34%),
    radial-gradient(circle at 20% 80%, rgba(239, 198, 72, .18), transparent 30%),
    linear-gradient(135deg, #fffaf0 0%, #f5ecff 45%, #eadcff 100%);
  color: #19112f;
}

.light-hero .hero-grid {
    grid-template-columns:1.1fr .9fr;
    gap:90px;
}

.light-hero .eyebrow {
  color: #6f35ff;
}

.light-hero .eyebrow::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: #efc648;
}

.light-hero h1 {
  color: #19112f;
}

.light-hero h1 span {
  background: linear-gradient(135deg, #6f35ff, #b56cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.light-hero .hero-text {
  color: #4b415f;
}

.mini-apps{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    gap:34px;
    margin:42px 0;
    align-items:start;
}

.mini-app-wrapper{
    display:flex;
    flex-direction:column;
    height:100%;
}

.mini-app{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.mini-content{
    flex:1;
}

.store-badge{
    align-self:center;
    margin-top:24px;
}

.mini-app img {
  width: 74px;
  height: 74px;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(111, 53, 255, .22);
  flex-shrink: 0;
}

.mini-label {
  margin: 0 0 6px;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
  color: #7a3ef0 !important;
}

.mini-app h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: #19112f;
}

.mini-app p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  color: #4b415f;
}

.mini-divider {
  width: 1px;
  height: 110px;
  background: rgba(111, 53, 255, .22);
}

.light-btn{

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

    color:#6F35FF;

    border:2px solid rgba(111,53,255,.22);

    backdrop-filter:blur(14px);

    transition:.25s ease;
}

.light-btn:hover{

    background:#6F35FF;

    color:white;

    border-color:#6F35FF;

    transform:translateY(-3px);

    box-shadow:
        0 18px 40px rgba(111,53,255,.25);

}
.phone-showcase {
   position:relative;
    min-height:650px;
    margin-top:-70px;
}

.phone {
  position: absolute;
  width: min(330px, 48vw);
  border-radius: 44px;
  filter: drop-shadow(0 35px 55px rgba(35, 20, 75, .28));
}

.phone-main {
  top: 0;
  left: 70px;
  transform: rotate(-4deg);
  z-index: 2;
}

.phone-side {
  top: 120px;
  right: 0;
  transform: rotate(8deg);
  z-index: 3;
}
/* Footer */
.site-footer {
  margin-top: auto;
  padding: 18px 0;
  background: rgba(15,2,38,.82);
  border-top: 1px solid rgba(209, 164, 240, 0.22);
}

.footer-inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong {
  color: #fff;
}

.footer-inner p,
.footer-center a,
.footer-right p {
  margin: 0;
  font-size: 0.85rem;
  color: #f3dcff;
}

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

.footer-center a {
  color: #f3dcff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-center a:hover {
  color: #fff;
}

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

/* =========================
   Streamer Studio Menu
========================= */

.ss-top-menu{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    display:grid;
    grid-template-columns:1fr auto 1fr;

    align-items:center;

    padding:14px 32px;

    background:rgba(15,2,38,.82);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.10);

}

.ss-logo{
    display:flex;
    align-items:center;
    min-width:220px;
    justify-self:start;
}

.appmill-link{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    text-decoration:none;
}

.appmill-logo{
    height:34px;
    width:auto;
    display:block;
}

.brand-tagline{
    color:#E7DDFF;
    font-size:13px;
    font-weight:600;
    white-space:nowrap;
}

.ss-nav-links{

    justify-self:center;

    display:flex;
    gap:34px;

    list-style:none;
    margin:0;
    padding:0;

}

.ss-nav-links a{
    color:#b699f7;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
}

.ss-nav-links a:hover{
    color:#fff;
}
.ss-nav-links a.active{

    color:#fff;

}
.header-app-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:white;
    text-decoration:none;
    font-size:14px;
    font-weight:800;

    padding:10px 18px;
    border-radius:999px;

    background:linear-gradient(135deg,#c13cff,#8e2cff);
    box-shadow:0 10px 28px rgba(0,0,0,.25);
    white-space:nowrap;
}

.header-app-btn:hover{
    transform:translateY(-1px);
    box-shadow:
        0 0 28px rgba(255,60,255,.55),
        0 0 60px rgba(142,44,255,.35);
}

.ss-menu-toggle{
    display:none;
    background:none;
    border:0;
    padding:8px;
    cursor:pointer;
}

.ss-menu-toggle span{
    display:block;
    width:26px;
    height:3px;
    margin:5px 0;
    background:white;
    border-radius:999px;
}
/* Scroll to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #6c3aad;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.ss-right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.appstore-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.appstore-text .small {
  font-size: 10px;
  font-weight: 600;
  opacity: 0.85;
}

.appstore-text .big {
  font-size: 17px;
  font-weight: 850;
}
.apps-dropdown {
  position: relative;
  justify-self: end;
}

.apps-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.apps-dropdown-menu {
  position: absolute;
  top: 62px;
  right: 0;
  width: 260px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(15, 2, 38, .96);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}

.apps-dropdown:hover .apps-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.apps-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  text-decoration: none;
  color: white;
}

.apps-dropdown-item a {

  color: white;
}

.apps-dropdown-item:hover {
  background: rgba(255,255,255,.08);
}

.apps-dropdown-item img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.apps-dropdown-item strong {
  display: block;
  font-size: 15px;
}

.apps-dropdown-item span {
  display: block;
  font-size: 12px;
  color: #bfaef7;
}

.dropdown-arrow{
     width:18px;
    height:18px;
    margin-left:6px;
    stroke-width:2.7;

    stroke:currentColor;
    stroke-width:2.5;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;

    transition:transform .25s ease;
}

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

#scrollToTopBtn:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 12px rgba(209, 164, 240, 0.6);
}
#scrollToTopBtn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.page-hero {
  padding: 150px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(168,85,247,.20), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #f5ecff 50%, #eadcff 100%);
  color: #19112f;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .9;
}

.page-hero p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 22px;
  color: #4b415f;
}

.page-content {
  padding: 80px 0 110px;
  background: #fcfbff;
}

.page-content .narrow {
  max-width: 920px;
}

.content-card {
  padding: 34px 38px;
  margin-bottom: 22px;
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(111,53,255,.12);
  box-shadow: 0 18px 45px rgba(35,20,75,.07);
}

.content-card h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #19112f;
}

.content-card h3 {
  margin: 24px 0 8px;
  font-size: 18px;
  color: #6f35ff;
}

.content-card p,
.content-card li {
  font-size: 17px;
  line-height: 1.7;
  color: #4b415f;
}

.content-card ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.content-card li::marker {
  color: #7a3ef0;
}

.content-card .btn {
  background: linear-gradient(135deg, #7A3EF0, #A566FF);
  color: white;
  border-radius: 999px;
  min-height: 50px;
  padding: 0 24px;
  box-shadow: 0 14px 32px rgba(122,62,240,.25);
}

.content-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(122,62,240,.35);
}
.support-hero .eyebrow {
    color: #6f35ff;
}

.hero-card {
    background:
        radial-gradient(circle at top right, rgba(168,85,247,.12), transparent 35%),
        rgba(255,255,255,.84);
}

.small-text {
    font-size: 14px !important;
    color: #7b728c !important;
    margin-top: 16px;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 0 0 24px;
}

.quick-help-card {
    padding: 26px;
    border-radius: 26px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(111,53,255,.12);
    box-shadow: 0 18px 45px rgba(35,20,75,.06);
}

.quick-help-card span {
    display: inline-block;
    margin-bottom: 26px;
    font-size: 32px;
    font-weight: 950;
    letter-spacing: -0.08em;
    color: #7A3EF0;
}

.quick-help-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #19112f;
}

.quick-help-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #4b415f;
}

.faq-intro {
    margin-top: -6px;
    margin-bottom: 20px;
}
.faq-item {
    margin-top: 14px;
    border-radius: 20px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(111,53,255,.13);
    overflow: hidden;
    transition: .25s ease;
}

.faq-item.active {
    background: white;
    border-color: rgba(111,53,255,.30);
    box-shadow: 0 18px 45px rgba(35,20,75,.08);
}

.faq-question {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #19112f;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;

    font-size: 17px;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.faq-question:hover {
    color: #6f35ff;
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;

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

    background: rgba(111,53,255,.10);
    color: #6f35ff;

    font-size: 24px;
    font-weight: 800;
    line-height: 1;

    flex-shrink: 0;
    transition: .25s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #4b415f;
}

.faq-item.active .faq-answer {
    max-height: 260px;
}
.viewer-page-hero {
    background:
        radial-gradient(circle at 80% 20%, rgba(93,244,255,.16), transparent 34%),
        radial-gradient(circle at 20% 80%, rgba(122,62,240,.14), transparent 30%),
        linear-gradient(135deg, #fcfbff 0%, #f4efff 48%, #e7dcff 100%);
}
@media (max-width: 860px) {
     .site-footer {
    margin-top: 24px;
    padding: 18px 0;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

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

      .light-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .mini-apps {
    grid-template-columns: 1fr;
  }

  .mini-divider {
    display: none;
  }

  .phone-showcase {
    min-height: 520px;
  }

  .phone-main {
    left: 0;
  }

  .phone-side {
    right: 0;
    top: 120px;
  }
     .apps-dropdown {
    display: none;
  }
  .hero-grid,
  .split-grid,
  .flow {
    grid-template-columns: 1fr;
  }

  .hero-duo {
    padding-top: 80px;
  }

  .app-duo {
    transform: none;
  }

  .viewer-card {
    margin-left: 0;
  }

  .split-panel,
  .audience-box {
    padding: 30px;
    border-radius: 30px;
  }

  .hero-copy h1 {
    font-size: 54px;
  }
   .ss-top-menu {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
  }
    .brand-tagline {
    display: none;
  }
   .ss-logo {
    min-width: 0;
  }

    .ss-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    width: auto;
    margin: 0;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    list-style: none;
    border-radius: 20px;
    background: rgba(15, 2, 38, .96);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.35);
    backdrop-filter: blur(18px);
  }
   .ss-nav-links a {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: #e7ddff;
  }

  .ss-nav-links a.active,
  .ss-nav-links a:hover {
    background: rgba(255,255,255,.08);
    color: white;
  }
    .ss-nav-links.open{

        display:flex;

    }

    .appstore-btn{

        display:none;

    }

      .ss-menu-toggle {
    display: block;
    margin-left: auto;
  }
    .page-hero {
    padding: 120px 0 60px;
  }

  .content-card {
    padding: 26px 24px;
    border-radius: 22px;
  }

  .page-hero h1 {
    font-size: 52px;
  }
   .quick-help-grid {
        grid-template-columns: 1fr;
    }
     .appmill-logo {
    height: 34px;
  }
    .apps-dropdown {
    display: none;
  }
}