/* RxBott Marketing Concept — themed to app icon */
:root{
  --bg: #f4f6f4;
  --surface: #ffffff;
  --ink: #101412;
  --muted: rgba(16, 20, 18, 0.62);

  /* Brand theme (sampled from the RxBott icon) */
  --green-900: #2e6865; /* deep teal */
  --green-800: #488180; /* teal */
  --green-600: #58c5b3; /* mint */
  --mint-100: #e7f7f2;
  --mint-200: #cbe6dd;
  --sun-200: #fff7e1;
  --sun-400: #d3a33a; /* warm gold (darker for text) */

  --rose-300: #cd9ba6;

  --border: rgba(16,20,18,0.10);
  --shadow: 0 18px 60px rgba(8, 24, 18, 0.10);
  --shadow-soft: 0 10px 30px rgba(8, 24, 18, 0.10);

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --max: 1200px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background: var(--bg);
}

a{ color:inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.bg{
  min-height:100vh;
  background:
    radial-gradient(1100px 700px at 18% 18%, rgba(88,197,179,0.22), transparent 60%),
    radial-gradient(900px 600px at 85% 22%, rgba(244,215,115,0.22), transparent 60%),
    radial-gradient(900px 700px at 80% 85%, rgba(72,129,128,0.16), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 40%, #ffffff 100%);
}

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244,246,244,0.70);
  border-bottom: 1px solid var(--border);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:16px;
  padding: 10px 0;
}

.header__inner--center{ justify-content:center; }


.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.brand__mark{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.brand--appbar{
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.brand__mark--app{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.88);
}
.brand__name--app{
  font-size: 24px;
}
.brand__name{
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__rx{ color: #F2C94C; }
.brand__bott{ color: #1FAE8A; }


.nav{
  display:flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}
.nav a{
  padding: 10px 12px;
  border-radius: 999px;
}
.nav a:hover{
  background: rgba(46,104,101,0.08);
  color: var(--green-900);
}

.header__cta{
  display:flex;
  gap: 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 50px rgba(8, 24, 18, 0.14);
}
.btn--primary{
  background: linear-gradient(135deg, var(--green-900), var(--green-600));
  color: #fff;
  border-color: transparent;
}
.btn--ghost{
  background: rgba(255,255,255,0.55);
}
.btn--soft{
  background: rgba(231,247,242,0.8);
  border-color: rgba(46,104,101,0.16);
  color: var(--green-900);
}
.btn--lg{
  padding: 14px 18px;
  font-size: 15px;
}

.hero{
  padding: 56px 0 20px;
}

.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
  color: var(--green-900);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
}

.kicker--brand{
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: 13px;
  color: var(--ink);
}
.kicker__icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}
.kicker__brand{ font-weight: 800; }


.h1{
  margin: 16px 0 10px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.lead{
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 54ch;
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.trust{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}
.trust__item{
  display:flex;
  gap: 10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--border);
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.dot--mint{ background: var(--mint-200); }
.dot--sun{ background: var(--sun-400); }
.dot--rose{ background: var(--rose-300); }

.hero__visual{
  position: relative;
}

.glass{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.5);
}

.hero__img{
  width:100%;
  height:auto;
  transform: scale(1.06);
}

.floating{
  position:absolute;
  animation: float 5.2s ease-in-out infinite;
}
.floating--a{ left: -14px; top: 18px; animation-delay: .1s; }
.floating--b{ right: -10px; top: 64px; animation-delay: .6s; }
.floating--c{ left: 30px; bottom: 18px; animation-delay: 1.0s; }

@keyframes float{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-10px); }
}

.pill{
  display:inline-flex;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  color: var(--green-900);
}
.pill--sun{
  background: rgba(252,244,219,0.88);
  color: #5b4a1e;
}
.pill--mint{
  background: rgba(231,247,242,0.9);
}

.section{
  padding: 64px 0;
}

.section__head{
  max-width: 70ch;
  margin-bottom: 26px;
}
.h2{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.sub{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.card{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  overflow:hidden;
}
.h3{
  margin:0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.mini{
  border-radius: 22px;
  border: 1px solid rgba(16,20,18,0.08);
  overflow:hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(8,24,18,0.12);
}
.mini img{
  width:100%;
  height:auto;
}
.tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.tag{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(231,247,242,0.8);
  border: 1px solid rgba(46,104,101,0.14);
  color: var(--green-900);
  font-weight: 700;
  font-size: 12px;
}

/* Premium */
.kicker--premium{
  background: rgba(255,247,225,0.92);
  border-color: rgba(244,215,115,0.55);
  color: var(--ink);
}

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

.premiumCard{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 22px;
}

.premiumCard__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.premiumBadge{
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,247,225,0.92);
  border: 1px solid rgba(244,215,115,0.55);
  color: #5b4a1e;
  font-weight: 800;
  font-size: 12px;
}

.list--tight{
  margin-top: 14px;
}

.list--tight li{
  margin: 8px 0;
}

.pricingPill{
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.pricingPill__label{
  font-weight: 900;
  color: var(--green-900);
}

.pricingPill__price{
  font-weight: 900;
  color: #5b4a1e;
  background: rgba(255,247,225,0.92);
  border: 1px solid rgba(244,215,115,0.55);
  padding: 6px 10px;
  border-radius: 999px;
}

.pricingPill__note{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.section--wave{
  background-image: url("assets/care_wave.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(16,20,18,0.06);
  border-bottom: 1px solid rgba(16,20,18,0.06);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items:center;
}
.split--reverse{
  grid-template-columns: 1fr 1fr;
}
.split--reverse .split__copy{ order: 2; }
.split--reverse .split__visual{ order: 1; }

.list{
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.list strong{ color: var(--ink); }

.quote{
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
}
.quote p{
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.quote span{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.phoneStack{
  position: relative;
  min-height: 520px;
}
.phoneStack__main{
  width: 78%;
  border-radius: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,20,18,0.08);
}
.phoneStack__side{
  width: 66%;
  position:absolute;
  right: -6%;
  bottom: -6%;
  transform: rotate(6deg);
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16,20,18,0.08);
}

.frameImage{
  border-radius: 28px;
  border: 1px solid rgba(16,20,18,0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.metricRow{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.metric{
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--border);
}
.metric__value{
  font-size: 22px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.02em;
}
.metric__label{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.note{
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(252,244,219,0.85);
  border: 1px solid rgba(244,215,115,0.55);
  color: #5b4a1e;
  font-weight: 600;
}

.section--calm{
  background:
    radial-gradient(900px 600px at 30% 20%, rgba(231,247,242,0.85), transparent 70%),
    radial-gradient(900px 600px at 80% 60%, rgba(252,244,219,0.85), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35));
  border-top: 1px solid rgba(16,20,18,0.06);
  border-bottom: 1px solid rgba(16,20,18,0.06);
}

.calmCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}
.calmCard{
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.calmCard p{ margin: 0; color: var(--muted); line-height: 1.6; }

.imageGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.imageGrid img{
  border-radius: 28px;
  border: 1px solid rgba(16,20,18,0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.ctaRow{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section--download{
  padding: 78px 0;
}
.download__card{
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(46,104,101,0.12), rgba(244,215,115,0.16));
  border: 1px solid rgba(16,20,18,0.10);
  box-shadow: var(--shadow);
}
.download__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.fineprint{
  margin-top: 14px;
  color: rgba(16,20,18,0.55);
  font-size: 12px;
  line-height: 1.55;
}

.footer{
  padding: 26px 0 40px;
  border-top: 1px solid rgba(16,20,18,0.10);
  background: rgba(255,255,255,0.5);
}
.footer__inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__brand{
  display:flex;
  gap: 12px;
  align-items:center;
}
.footer__brand img{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.footer__name{
  font-weight: 800;
}
.footer__tag{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.footer__links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}
.footer__links a:hover{ color: var(--green-900); }

@media (max-width: 980px){
  .premiumGrid{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .hero__grid{ grid-template-columns: 1fr; }
  .floating{ display:none; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split--reverse .split__copy,
  .split--reverse .split__visual{ order: initial; }
  .phoneStack{ min-height: unset; }
  .phoneStack__side{ position: static; transform: none; width: 100%; margin-top: 14px; }
  .phoneStack__main{ width:100%; }
  .calmCards{ grid-template-columns: 1fr; }
}
