:root{
  --p:#5f43a6;
  --black:#111111;
  --muted:#555555;
  --white:#ffffff;
  --line:rgba(95,67,166,.14);
  --soft:rgba(95,67,166,.06);
  --shadow:0 24px 70px rgba(95,67,166,.12);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:#ffffff;
  color:#111111;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.scroll-progress{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  width:0;
  height:3px;
  background:var(--p);
  transition:width .08s linear;
}

/* =========================================================
   HEADER
========================================================= */

.site-header{
  position:fixed;
  z-index:100;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 40px));
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 8px;
  transition:.35s ease;
}

.site-header.scrolled{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(20px);
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 18px;
  box-shadow:0 12px 40px rgba(95,67,166,.08);
  top:12px;
}

/* HORMe LOGO */

.logo{
  display:flex;
  align-items:center;
  width:170px;
  height:48px;
  flex:0 0 170px;
  padding:0;
  margin:0;
  color:#111111 !important;
  text-decoration:none;
}

.logo img{
  display:block;
  width:170px;
  height:48px;
  max-width:170px;
  max-height:48px;
  min-width:0;
  min-height:0;
  object-fit:contain;
  object-position:left center;
}

.logo-icon{
  width:34px;
  height:34px;
  border:2px solid var(--p);
  border-radius:11px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:var(--p);
}

.desktop-nav{
  display:flex;
  gap:34px;
  font-size:13px;
  font-weight:600;
}

.desktop-nav a{
  color:#111111 !important;
  transition:.25s;
}

.desktop-nav a:hover{
  color:var(--p) !important;
  opacity:1;
}

.header-cta,
.primary-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  background:var(--p);
  color:#ffffff !important;
  border:1px solid var(--p);
  border-radius:999px;
  padding:14px 21px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.02em;
  box-shadow:0 12px 30px rgba(95,67,166,.2);
  transition:.3s ease;
}

.header-cta:hover,
.primary-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(95,67,166,.25);
}

.header-cta span,
.primary-btn span,
.outline-btn span{
  font-size:16px;
}

.menu-btn{
  display:none;
  background:transparent;
  color:#111111 !important;
  border:0;
  font-size:22px;
  cursor:pointer;
}

/* =========================================================
   GENERAL
========================================================= */

.section{
  width:min(1180px,calc(100% - 40px));
  margin:auto;
  padding:120px 0;
}

h1,
h2,
h3,
p{
  margin-top:0;
}

h1,
h2,
h3{
  color:#111111;
}

h1 span,
h2 span{
  color:var(--p);
  opacity:1;
}

p{
  color:#111111;
}

.eyebrow{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(95,67,166,.06);
  border:1px solid var(--line);
  color:var(--p);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
}

/* =========================================================
   HERO
========================================================= */

.hero{
  min-height:860px;
  display:grid;
  grid-template-columns:1fr 1.05fr;
  align-items:center;
  gap:40px;
  padding-top:150px;
  position:relative;
}

.hero-copy{
  position:relative;
  z-index:3;
}

h1{
  font-size:clamp(52px,6.3vw,84px);
  line-height:.98;
  letter-spacing:-.065em;
  margin:25px 0;
  color:#111111;
}

.hero-text{
  max-width:570px;
  font-size:17px;
  line-height:1.75;
  color:#111111;
  opacity:.7;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:22px;
  margin-top:30px;
}

.text-btn{
  color:#111111 !important;
  font-size:13px;
  font-weight:700;
}

.text-btn:hover{
  color:var(--p) !important;
}

.trust-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:38px;
  font-size:12px;
  color:#111111;
}

.trust-row strong{
  color:#111111;
}

.trust-row small{
  display:block;
  color:#111111;
  opacity:.6;
  margin-top:4px;
}

.mini-avatars{
  display:flex;
}

.mini-avatars i{
  font-style:normal;
  width:31px;
  height:31px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--p);
  color:#fff;
  border:2px solid #fff;
  margin-left:-7px;
  font-size:10px;
}

.mini-avatars i:first-child{
  margin-left:0;
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual{
  min-height:620px;
  position:relative;
  display:grid;
  place-items:center;
}

.hero-visual:before{
  content:"";
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(95,67,166,.12),
    transparent 68%
  );
  animation:pulse 5s ease-in-out infinite;
}

.hero-orbit{
  position:absolute;
  border:1px solid var(--line);
  border-radius:50%;
  pointer-events:none;
}

.orbit-a{
  width:680px;
  height:680px;
  right:-260px;
  top:120px;
  animation:spin 28s linear infinite;
}

.orbit-b{
  width:420px;
  height:420px;
  right:80px;
  top:250px;
  animation:spin 18s linear reverse infinite;
}

/* =========================================================
   PHONE MOCKUPS
========================================================= */

.phone{
  position:absolute;
  width:265px;
  height:545px;
  border:5px solid var(--p);
  border-radius:42px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.phone-front{
  transform:rotate(-4deg) translate(-35px,0);
  z-index:2;
}

.phone-back{
  transform:rotate(7deg) translate(135px,25px);
  opacity:.88;
}

.phone-speaker{
  position:absolute;
  z-index:2;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:72px;
  height:19px;
  background:var(--p);
  border-radius:20px;
}

.phone-screen{
  padding:52px 18px 18px;
  height:100%;
  font-size:11px;
  color:#111111;
}

.tiny-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:24px;
  color:#111111;
}

.phone-screen small{
  display:block;
  color:#111111;
  opacity:.58;
}

.phone-screen strong{
  font-size:28px;
  display:block;
  margin:6px 0 14px;
  color:#111111;
}

.chart{
  height:70px;
  display:flex;
  align-items:end;
  gap:7px;
  border-bottom:1px solid var(--line);
  margin-bottom:18px;
}

.chart span{
  width:13%;
  background:var(--p);
  border-radius:8px 8px 0 0;
  opacity:.35;
  height:30%;
}

.chart span:nth-child(2){height:55%}
.chart span:nth-child(3){height:42%}
.chart span:nth-child(4){height:70%}
.chart span:nth-child(5){height:62%}
.chart span:nth-child(6){height:90%}
.chart span:nth-child(7){height:78%}

.chart.big{
  height:90px;
}

.asset-list>div,
.phone-row{
  display:flex;
  justify-content:space-between;
  padding:13px 0;
  border-bottom:1px solid var(--line);
  color:#111111;
}

.asset-list span,
.asset-list b,
.phone-row b,
.phone-row em{
  color:#111111;
}

.asset-list b,
.phone-row em{
  font-style:normal;
  font-size:10px;
}

/* =========================================================
   FLOATING NOTES
========================================================= */

.floating-note{
  position:absolute;
  z-index:4;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:15px 17px;
  box-shadow:var(--shadow);
  font-size:11px;
  animation:float 4s ease-in-out infinite;
  color:#111111;
}

.floating-note b{
  color:#111111;
}

.floating-note span{
  display:block;
  color:#111111;
  opacity:.58;
  margin-top:4px;
}

.note-one{
  right:0;
  top:95px;
}

.note-two{
  left:30px;
  bottom:80px;
  animation-delay:-2s;
}

/* =========================================================
   LOGO STRIP
========================================================= */

.logo-strip{
  width:100%;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:23px 5%;
  display:flex;
  justify-content:space-around;
  gap:20px;
  overflow:hidden;
  color:#111111;
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
  opacity:.55;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading{
  max-width:680px;
}

.section-heading.centered{
  text-align:center;
  margin:0 auto 55px;
}

.section-heading h2,
.about-copy h2,
.value-intro h2,
.feedback-copy h2,
.final-cta h2{
  font-size:clamp(42px,5vw,66px);
  line-height:1.02;
  letter-spacing:-.06em;
  margin:22px 0;
  color:#111111;
}

.section-heading p,
.about-copy p,
.feedback-copy p,
.final-cta p{
  font-size:16px;
  line-height:1.7;
  color:#111111;
  opacity:.66;
}

/* =========================================================
   FEATURES
========================================================= */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:55px;
}

.feature-card{
  min-height:270px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  position:relative;
  overflow:hidden;
  transition:.35s;
  background:#fff;
  color:#111111;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow);
  border-color:rgba(95,67,166,.72);
}

.feature-icon{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(95,67,166,.06);
  color:var(--p);
  display:grid;
  place-items:center;
  font-size:21px;
  margin-bottom:35px;
}

.feature-card h3{
  font-size:21px;
  letter-spacing:-.03em;
  color:#111111;
}

.feature-card p{
  font-size:13px;
  line-height:1.65;
  color:#111111;
  opacity:.62;
  max-width:270px;
}

.feature-card>span{
  position:absolute;
  right:25px;
  bottom:22px;
  color:var(--p);
  font-size:11px;
  opacity:.7;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:90px;
  align-items:center;
}

.about-copy p{
  max-width:560px;
  color:#111111;
}

.about-visual{
  position:relative;
  padding:35px;
}

.dashboard-window{
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
  overflow:hidden;
  transform:rotate(1deg);
  background:#fff;
}

.window-bar{
  height:44px;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 16px;
  font-size:10px;
  color:#111111;
}

.window-bar i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--p);
  opacity:.45;
}

.window-bar span{
  margin-left:8px;
  color:#111111;
  opacity:.55;
}

.window-body{
  padding:28px;
  color:#111111;
}

.window-total small{
  color:#111111;
  opacity:.55;
}

.window-total b{
  display:block;
  font-size:35px;
  letter-spacing:-.05em;
  margin:6px 0;
  color:#111111;
}

.window-total span{
  font-size:10px;
  color:#111111;
  opacity:.55;
}

.bars{
  height:170px;
  display:flex;
  align-items:end;
  gap:13px;
  margin-top:30px;
  border-bottom:1px solid var(--line);
}

.bars i{
  flex:1;
  background:var(--p);
  opacity:.45;
  border-radius:9px 9px 0 0;
  animation:bars 3s ease-in-out infinite alternate;
}

.bars i:nth-child(2){animation-delay:-.3s}
.bars i:nth-child(3){animation-delay:-.6s}
.bars i:nth-child(4){animation-delay:-.9s}
.bars i:nth-child(5){animation-delay:-1.2s}
.bars i:nth-child(6){animation-delay:-1.5s}

.window-pills{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:20px;
}

.window-pills span{
  border:1px solid var(--line);
  padding:8px 10px;
  border-radius:999px;
  font-size:9px;
  color:#111111;
}

.floating-stat{
  position:absolute;
  right:0;
  bottom:0;
  background:var(--p);
  color:#fff;
  border-radius:20px;
  padding:19px 24px;
  box-shadow:var(--shadow);
  transform:rotate(-4deg);
}

.floating-stat b,
.floating-stat span{
  color:#fff;
}

.floating-stat b{
  display:block;
  font-size:26px;
}

.floating-stat span{
  font-size:10px;
  opacity:.8;
}

/* =========================================================
   WHY HORMe
========================================================= */

.value-section{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:60px;
  align-items:center;
}

.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.value-card{
  min-height:260px;
  border:1px solid var(--line);
  border-radius:26px;
  padding:25px;
  color:#111111;
}

.value-card.dark{
  background:var(--p);
  color:#fff;
}

.value-card strong{
  font-size:11px;
  opacity:.55;
  color:inherit;
}

.value-card h3{
  margin-top:65px;
  font-size:22px;
  color:inherit;
}

.value-card p{
  font-size:13px;
  line-height:1.6;
  opacity:.62;
  color:inherit;
}

.value-card.dark p{
  opacity:.8;
}

/* =========================================================
   REVIEWS
========================================================= */

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.review-card{
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  min-height:300px;
  transition:.3s;
  color:#111111;
  background:#fff;
}

.review-card:hover{
  transform:translateY(-7px);
  box-shadow:var(--shadow);
}

.quote{
  font-size:55px;
  line-height:.7;
  color:var(--p);
}

.review-card p{
  font-size:14px;
  line-height:1.75;
  color:#111111;
  opacity:.7;
  margin:35px 0;
}

.review-person{
  display:flex;
  align-items:center;
  gap:10px;
}

.review-person i{
  font-style:normal;
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--p);
  color:#fff;
  font-size:11px;
}

.review-person b{
  color:#111111;
}

.review-person small{
  display:block;
  color:#111111;
  font-size:9px;
  opacity:.55;
  margin-top:3px;
}

.review-note{
  text-align:center;
  font-size:10px;
  opacity:.42;
  margin-top:18px;
}

/* =========================================================
   FEEDBACK
========================================================= */

.feedback-card{
  border:1px solid var(--line);
  border-radius:36px;
  padding:60px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  box-shadow:var(--shadow);
  background:#fff;
}

.feedback-form label{
  display:block;
  color:#111111;
  font-size:11px;
  font-weight:700;
  margin-bottom:16px;
}

.field-row{
  display:grid;
  grid-template-columns:1fr 150px;
  gap:14px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#111111;
  outline:0;
  padding:14px;
  margin-top:7px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder{
  color:#777;
}

.feedback-form textarea{
  min-height:150px;
  resize:vertical;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus{
  border-color:var(--p);
  box-shadow:0 0 0 4px rgba(95,67,166,.06);
}

.form-status{
  color:#111111;
  font-size:11px;
  margin-top:14px;
  opacity:0;
  transition:.3s;
}

.form-status.show{
  opacity:1;
}

/* =========================================================
   FINAL CTA
========================================================= */

.final-cta{
  text-align:center;
  position:relative;
  overflow:hidden;
}

.final-cta h2{
  max-width:800px;
  margin:20px auto;
}

.centered-actions{
  justify-content:center;
}

.outline-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid var(--p);
  color:var(--p) !important;
  border-radius:999px;
  padding:14px 21px;
  font-size:12px;
  font-weight:800;
  transition:.3s;
  background:#fff;
}

.outline-btn:hover{
  background:var(--p);
  color:#fff !important;
  transform:translateY(-3px);
}

.cta-orbit{
  position:absolute;
  width:560px;
  height:260px;
  border:1px solid var(--line);
  border-radius:50%;
  left:50%;
  top:45%;
  transform:translate(-50%,-50%) rotate(-8deg);
  animation:spin 18s linear infinite;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer{
  border-top:1px solid var(--line);
  width:min(1180px,calc(100% - 40px));
  margin:auto;
  padding:45px 0 30px;
}

.footer-brand{
  display:flex;
  gap:10px;
  align-items:center;
  color:#111111;
}

.footer-brand b{
  color:#111111;
}

.footer-brand small{
  display:block;
  color:#111111;
  font-size:9px;
  opacity:.5;
  margin-top:3px;
}

.footer-links{
  display:flex;
  gap:22px;
  justify-content:center;
  margin:25px 0;
  font-size:11px;
  font-weight:600;
}

.footer-links a{
  color:#111111 !important;
  transition:.25s;
}

.footer-links a:hover{
  color:var(--p) !important;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  padding-top:20px;
  font-size:9px;
  color:#111111;
  opacity:.55;
}

/* =========================================================
   SCROLL ANIMATIONS
========================================================= */

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:
    opacity .8s ease,
    transform .8s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.delay-1{
  transition-delay:.12s;
}

.delay-2{
  transition-delay:.24s;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes float{
  0%,100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-12px);
  }
}

@keyframes pulse{
  0%,100%{
    transform:scale(.94);
    opacity:.7;
  }

  50%{
    transform:scale(1.06);
    opacity:1;
  }
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

@keyframes bars{
  to{
    transform:scaleY(.72);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  .site-header{
    width:calc(100% - 24px);
    height:65px;
  }

  .logo{
    width:150px;
    height:42px;
    flex:0 0 150px;
  }

  .logo img{
    width:150px;
    height:42px;
    max-width:150px;
    max-height:42px;
  }

  .desktop-nav{
    display:none;
    position:absolute;
    top:70px;
    left:0;
    right:0;
    background:#fff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:18px;
    box-shadow:var(--shadow);
    flex-direction:column;
    gap:18px;
  }

  .desktop-nav.open{
    display:flex;
  }

  .header-cta{
    padding:11px 14px;
    font-size:10px;
  }

  .menu-btn{
    display:block;
  }

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    padding-top:130px;
  }

  .hero-copy{
    text-align:center;
  }

  .hero-text{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions,
  .trust-row{
    justify-content:center;
  }

  .hero-visual{
    min-height:560px;
  }

  .phone{
    width:220px;
    height:460px;
  }

  .phone-front{
    transform:rotate(-4deg) translate(-25px,0);
  }

  .phone-back{
    transform:rotate(7deg) translate(105px,25px);
  }

  .floating-note{
    display:none;
  }

  .feature-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-section,
  .value-section,
  .feedback-card{
    grid-template-columns:1fr;
    gap:45px;
  }

  .value-grid,
  .review-grid{
    grid-template-columns:1fr;
  }

  .value-card{
    min-height:210px;
  }

  .value-card h3{
    margin-top:40px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:560px){

  .section{
    width:min(100% - 28px,1180px);
    padding:85px 0;
  }

  .site-header{
    width:calc(100% - 16px);
    height:60px;
  }

  .logo{
    width:125px;
    height:35px;
    flex:0 0 125px;
  }

  .logo img{
    width:125px;
    height:35px;
    max-width:125px;
    max-height:35px;
  }

  .header-cta{
    font-size:9px;
    padding:10px 11px;
  }

  .logo-icon{
    width:30px;
    height:30px;
  }

  h1{
    font-size:49px;
  }

  .section-heading h2,
  .about-copy h2,
  .value-intro h2,
  .feedback-copy h2,
  .final-cta h2{
    font-size:43px;
  }

  .hero-visual{
    min-height:500px;
  }

  .phone{
    width:190px;
    height:400px;
    border-radius:31px;
  }

  .phone-front{
    transform:rotate(-4deg) translate(-18px,0);
  }

  .phone-back{
    transform:rotate(7deg) translate(82px,20px);
  }

  .phone-screen{
    padding:45px 13px 12px;
  }

  .phone-screen strong{
    font-size:22px;
  }

  .logo-strip{
    justify-content:flex-start;
    gap:38px;
    white-space:nowrap;
    overflow:auto;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .feature-card{
    min-height:235px;
  }

  .about-visual{
    padding:15px 0;
  }

  .window-body{
    padding:20px;
  }

  .feedback-card{
    padding:30px 20px;
  }

  .field-row{
    grid-template-columns:1fr;
  }

  .footer-links{
    justify-content:flex-start;
    flex-wrap:wrap;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  .reveal{
    opacity:1;
    transform:none;
  }

  .hero-orbit,
  .hero-visual:before,
  .floating-note,
  .bars i,
  .cta-orbit{
    animation:none;
  }
}