/* =========================================================
   HOME / INDEX — CLEAN + RESPONSIVE LANDING
========================================================= */

.hm-page{
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  padding-top: 0;
}

:root{
  --hero-height: 100vh;
}

/* Background system */
.hm-page::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 520px at 50% 18%, rgba(255,200,90,.10), transparent 60%),
    radial-gradient(700px 520px at 18% 62%, rgba(140,120,70,.08), transparent 62%),
    radial-gradient(900px 700px at 82% 72%, rgba(90,80,55,.08), transparent 62%),
    radial-gradient(1400px 900px at 50% 50%, rgba(0,0,0,.35), rgba(0,0,0,.72) 68%),
    linear-gradient(180deg, #15140f, #0d0c09);
}

.hm-page > *{ position: relative; }

/* Ensures sections never overlap the hero */
.hm-after-hero{
  padding-top: 26px;
}

/* Reveal */
.hm-reveal{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.hm-reveal.is-visible{ opacity: 1; transform: translateY(0); }

.hm-section{
  width: min(1120px, calc(100% - 32px));
  margin: 24px auto;
}

.hm-section__head{ margin-bottom: 20px; }

.hm-section__head--split{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 840px){
  .hm-section__head--split{ flex-direction: column; align-items: flex-start; }
}

.hm-h2{
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  font-weight: 900;
}

.hm-p{
  margin-top: 10px;
  color: rgba(244,246,250,.76);
  line-height: 1.75;
  max-width: 80ch;
  font-size: 15px;
}

.hm-spacer{ height: 32px; }

.hm-sr-only{
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Buttons */
.hm-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .2s ease;
  user-select: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.hm-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.hm-btn:active{ transform: translateY(0); }

.hm-btn--primary{
  background: linear-gradient(135deg, rgba(255, 200, 90, .32), rgba(255, 200, 90, .14));
  border-color: rgba(255, 200, 90, .35);
  color: rgba(244,246,250,.95);
}
.hm-btn--primary:hover{
  background: linear-gradient(135deg, rgba(255, 200, 90, .40), rgba(255, 200, 90, .20));
  border-color: rgba(255, 200, 90, .45);
  box-shadow: 0 12px 32px rgba(255, 200, 90, .15);
}
.hm-btn--ghost{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
}
.hm-btn--ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.20);
}

/* Badge (Consistent with Blogs/Contact) */
.hm-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.hm-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 184, 0, .95);
  box-shadow: 0 0 0 6px rgba(255, 184, 0, .12);
}
.hm-badge__text {
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}

/* HERO */
.hm-hero{
  width: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  height: var(--hero-height, 100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  isolation: isolate;
  contain: layout paint;
  z-index: 0;
}

.hm-hero__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Professional Tech Grid Pattern */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
  /* Vignette to fade edges */
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  transform: none;
  filter: none;
}

.hm-hero__matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.hm-hero::after{
  content:"";
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(1000px 550px at 40% 20%, rgba(255,200,90,.15), transparent 55%),
    radial-gradient(800px 600px at 75% 70%, rgba(110,190,255,.10), transparent 58%);
  animation: hmPremiumGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hmPremiumGlow{
  0%, 100%{ transform: translate3d(0,0,0) scale(1); opacity: .5; }
  50%{ transform: translate3d(20px, -15px, 0) scale(1.1); opacity: .8; }
}

.hm-hero__inner{
  width: min(1120px, calc(100% - 32px));
  margin: auto;
  padding: clamp(26px, 4vw, 44px) 0;
  padding-top: clamp(100px, 12vw, 140px);
  position: relative;
  z-index: 2;
}

.hm-hero__content{
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.hm-hero .hm-hero__badge-wrap,
.hm-hero .hm-hero__title,
.hm-hero .hm-hero__subtitle,
.hm-hero .hm-hero__cta{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.hm-hero.is-visible .hm-hero__badge-wrap{ transition-delay: .10s; opacity: 1; transform: translateY(0); }
.hm-hero.is-visible .hm-hero__title{ transition-delay: .18s; opacity: 1; transform: translateY(0); }
.hm-hero.is-visible .hm-hero__subtitle{ transition-delay: .26s; opacity: 1; transform: translateY(0); }
.hm-hero.is-visible .hm-hero__cta{ transition-delay: .34s; opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .hm-hero .hm-hero__badge-wrap,
  .hm-hero .hm-hero__title,
  .hm-hero .hm-hero__subtitle,
  .hm-hero .hm-hero__cta{
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hm-hero::after{ animation: none; }
  .hm-hero__bg{ transform: none !important; }
}

.hm-hero__badge-wrap{
  display: flex;
  justify-content: center;
}

.hm-hero__title{
  margin-top: 4px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.03;
  max-width: 20ch;
  margin-inline: auto;
  text-shadow: 0 12px 30px rgba(0,0,0,.35);
  text-align: center;
}

/* Typewriter + reserved width */
.hm-typing{
  display: inline-block;
  min-width: var(--hm-typing-min, 12ch);
  white-space: nowrap;
  color: #38BDF8; /* Terminal Blue */
  font-family: "JetBrains Mono", "Fira Code", "Consolas", monospace;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Terminal Block Cursor */
.hm-typing::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1em;
  background: #38BDF8;
  margin-left: 4px;
  vertical-align: -2px;
  animation: hmBlink 1s step-end infinite;
}
@keyframes hmBlink{
  0%, 100%{ opacity: 1; }
  50%{ opacity: 0; }
}

.hm-hero__subtitle{
  max-width: 62ch;
  color: rgba(244,246,250,.78);
  line-height: 1.7;
  font-size: 15.5px;
  margin-inline: auto;
  text-align: center;
}

.hm-hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
}

/* Feature cards */
.hm-cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 920px){
  .hm-cards{ grid-template-columns: 1fr; }
}
.hm-card{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.hm-card::before{
  content:"";
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(600px 300px at 30% 20%, rgba(255,200,90,.08), transparent 70%),
    radial-gradient(500px 350px at 80% 80%, rgba(110,190,255,.06), transparent 70%);
  opacity: .35;
  transition: opacity .2s ease;
  pointer-events: none;
}
.hm-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
  transform: skewX(-25deg);
  pointer-events: none;
  transition: none;
}
.hm-card:hover{
  transform: translateY(-3px);
  border-color: rgba(255,200,90,.22);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
}
.hm-card:hover::before{ opacity: .55; }
.hm-card:hover::after{
  left: 200%;
  transition: left 0.7s ease-in-out;
}

.hm-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-bottom: 10px;
  transition: transform 0.2s ease;
  transform: translateZ(0);
}
.hm-card__icon i{ font-size: 20px; opacity: .9; }
.hm-card:hover .hm-card__icon { transform: translateZ(20px) scale(1.1) rotate(-5deg); }
.hm-card__title{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 16px;
}
.hm-card__text{
  margin-top: 8px;
  color: rgba(244,246,250,.72);
  line-height: 1.7;
  font-size: 13.5px;
}
.hm-card__link{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,200,90,.92);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.hm-card__link:hover{ text-decoration: underline; }

/* Category preview */
.hm-catgrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 920px){
  .hm-catgrid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .hm-catgrid{ grid-template-columns: 1fr; }
}
.hm-cat{
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(8px);
  text-decoration: none;
  color: rgba(244,246,250,.92);
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
  display: block;
  --accent: 255, 200, 90; /* Fallback color */
}
.hm-cat:hover{
  transform: translateY(-2px);
  border-color: rgba(var(--accent), .4);
  background: rgba(255,255,255,.06);
  box-shadow: 0 12px 30px rgba(var(--accent), .15);
}
.hm-cat__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hm-cat__icon{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent), .2);
  background: rgba(var(--accent), .05);
  color: rgba(var(--accent), 1);
  transition: transform 0.2s ease;
}
.hm-cat:hover .hm-cat__icon { transform: scale(1.1); background: rgba(var(--accent), .1); }
.hm-cat__badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent), .3);
  background: rgba(var(--accent), .08);
  color: rgba(var(--accent), 1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hm-cat__title{
  margin-top: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 15px;
}
.hm-cat__text{
  margin-top: 6px;
  color: rgba(244,246,250,.70);
  line-height: 1.6;
  font-size: 13px;
}

/* Post grid (restored) */
.hm-postgrid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 980px){
  .hm-postgrid{ grid-template-columns: 1fr; }
}
.hm-post{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-decoration: none;
  color: rgba(244,246,250,.92);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hm-post::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,200,90,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hm-post:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.5);
}
.hm-post:hover::after { opacity: 1; }
.hm-post__media{
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hm-post__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .25s ease;
}
.hm-post:hover .hm-post__media img{ transform: scale(1.06); }
.hm-post__body{ 
  padding: 24px; 
  display: flex;
  flex-direction: column;
  flex: 1;
}
.hm-post__k{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  font-size: 10px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.1);
  color: #38BDF8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: 12px;
}
.hm-post__t{
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.hm-post__s{
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  font-size: 14px;
  margin-bottom: 20px;
}
.hm-post__go{
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all .2s ease;
}
.hm-post__go i {
  transition: transform 0.2s ease;
}
.hm-post:hover .hm-post__go{
  color: #38BDF8;
}
.hm-post:hover .hm-post__go i{
  transform: translateX(4px);
}

/* CONTACT (out of cards) */
.hm-contact{
  width: min(920px, calc(100% - 32px));
  margin: 28px auto 18px;
}
.hm-contact__inner{
  padding: clamp(18px, 3.2vw, 28px);
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hm-contact__inner::before{
  content:"";
  position: absolute;
  inset: -120%;
  background:
    radial-gradient(800px 420px at 18% 28%, rgba(110,190,255,.07), transparent 70%),
    radial-gradient(650px 520px at 82% 82%, rgba(255,200,90,.06), transparent 70%);
  opacity: .55;
  animation: hmContactGlow 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hmContactGlow{
  0%, 100%{ transform: translate(0, 0); }
  50%{ transform: translate(14px, -10px); }
}
.hm-contact__inner > *{ position: relative; z-index: 1; }

.hm-form--stack{
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.hm-field label{
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  color: rgba(244,246,250,.85);
  margin-bottom: 8px;
}

.hm-field input,
.hm-field textarea{
  width: 100%;
  border-radius: 24px;
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.25);
  color: rgba(244,246,250,.92);
  outline: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all .2s ease;
}

.hm-field input {
  border-radius: 999px;
  height: 54px;
}

.hm-field textarea{
  resize: vertical;
  min-height: 140px;
}

.hm-field input:focus,
.hm-field textarea:focus{
  border-color: #38BDF8;
  background: rgba(56, 189, 248, 0.05);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.hm-form__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}

/* =========================================================
   NEW ADDITION: INFINITE SKILLS MARQUEE
========================================================= */
.hm-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0 60px;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  z-index: 2;
  user-select: none;
}

.hm-marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: hmScroll 40s linear infinite;
}

/* Pause on hover for accessibility/readability */
.hm-marquee__track:hover {
  animation-play-state: paused;
}

.hm-marquee__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.hm-marquee__item:hover {
  color: rgba(255, 255, 255, 0.9);
}

.hm-marquee__item i {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

.hm-marquee__item:hover i {
  color: #38BDF8; /* Brand accent (Sky Blue) */
}

@keyframes hmScroll {
  to { transform: translateX(-50%); }
}

/* =========================================================
   NEW ADDITION: SPOTLIGHT SECTION
========================================================= */
.hm-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.hm-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hm-spotlight__media {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.hm-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hm-spotlight:hover .hm-spotlight__media img {
  transform: scale(1.06);
}

.hm-spotlight__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hm-spotlight__badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #38BDF8;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
  transition: transform 0.2s ease;
  transform: translateZ(0);
}

.hm-spotlight__title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hm-spotlight__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .hm-spotlight { grid-template-columns: 1fr; }
  .hm-spotlight__media { height: 240px; min-height: auto; }
  .hm-spotlight__content { padding: 24px; }
}

/* =========================================================
   NEW ADDITION: NEWSLETTER SECTION
========================================================= */
.hm-newsletter {
  width: min(1120px, calc(100% - 32px));
  margin: 60px auto;
  text-align: center;
}

.hm-newsletter__inner {
  padding: 60px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

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

.hm-newsletter__inner::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
}

.hm-newsletter__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.hm-newsletter__form {
  position: relative;
  max-width: 480px;
  margin: 32px auto 0;
  display: block;
}

.hm-newsletter__input {
  width: 100%;
  height: 54px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 0 140px 0 24px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  font-size: 15px;
}

.hm-newsletter__input:focus {
  background: rgba(0,0,0,0.4);
  border-color: #38BDF8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
}

.hm-newsletter__form .hm-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  height: auto;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
}

/* Success Message */
.hm-newsletter__success {
  display: none;
  text-align: center;
  padding-top: 10px;
  animation: hmFadeIn 0.5s ease forwards;
}

.hm-newsletter__success i {
  font-size: 42px;
  color: #34d399;
  margin-bottom: 12px;
  display: inline-block;
}

.hm-newsletter__success h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

@keyframes hmFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
