/* ============================================================
   Kinetic by Windstream — Authorized Retailer landing page
   Brand tokens
   ============================================================ */

:root {
  --navy:        #0b0a38;
  --navy-deep:   #07062a;
  --green:       #1fa85c;
  --green-dark:  #17864a;
  --yellow:      #e8ff00;
  --magenta:     #a11a5e;
  --cyan:        #00aee6;
  --ink:         #10102e;
  --body:        #2f3145;
  --muted:       #616479;
  --line:        #e4e6ee;
  --surface:     #ffffff;
  --surface-alt: #f6f7fa;

  --display: "Outfit", "Segoe UI", system-ui, sans-serif;
  --text: "Figtree", "Segoe UI", system-ui, sans-serif;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-card: 0 14px 40px rgba(16, 16, 46, 0.10);
  --shadow-soft: 0 6px 20px rgba(16, 16, 46, 0.07);

  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 84px 0; }
.section--alt { background: var(--surface-alt); }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-head p { font-size: 1.15rem; color: var(--ink); font-weight: 600; }

/* Focus visibility ---------------------------------------- */
:where(a, button, summary, input, [tabindex]):focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  z-index: 999;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-deep); }
.btn--white { background: #fff; color: var(--ink); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--block { width: 100%; }

.btn .chev {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.22);
  flex: 0 0 auto;
}
.btn--white .chev { background: var(--navy); color: #fff; }
.btn .chev svg { width: 13px; height: 13px; }

/* ============================================================
   Retailer disclosure bar
   ============================================================ */
.disclosure-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  text-align: center;
  padding: 9px 24px;
  letter-spacing: .01em;
}
.disclosure-bar strong { color: #fff; }

/* ============================================================
   Utility bar + header
   ============================================================ */
.utility {
  background: #fff;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-height: 48px;
}
.utility-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-family: var(--display);
  color: var(--ink);
  font-size: 1.12rem;
}
.phone-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
}
.phone-dot svg { width: 15px; height: 15px; }
.utility-link { display: inline-flex; align-items: center; gap: 7px; color: var(--body); font-weight: 500; }
.utility-link:hover { color: var(--ink); }

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.masthead .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 84px;
}

/* Logo ---------------------------------------------------- */
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo-img {
  width: 190px;
  height: auto;
  display: block;
}
.logo-img--footer { width: 190px; }
@media (max-width: 620px) {
  .logo-img, .logo-img--footer { width: 158px; }
}

.nav { display: flex; align-items: center; gap: 24px; margin-right: auto; }
.nav-item { position: relative; }
.nav-btn {
  background: none; border: 0; padding: 8px 0;
  font-family: var(--display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 7px;
  cursor: pointer;
}
.nav-btn svg { width: 12px; height: 12px; transition: transform .2s ease; }
.nav-item.is-open .nav-btn svg { transform: rotate(180deg); }
.nav-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  min-width: 236px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 10px;
  display: none;
}
.nav-item.is-open .nav-panel { display: block; }
.nav-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--body);
}
.nav-panel a:hover { background: var(--surface-alt); color: var(--ink); }

.search {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  min-width: 220px;
  color: var(--muted);
}
.search svg { width: 17px; height: 17px; flex: 0 0 auto; }
.search input {
  border: 0; outline: 0; background: none;
  font-family: var(--text); font-size: .98rem;
  width: 100%; color: var(--ink);
}

.seg {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--display); font-weight: 600; color: var(--ink);
  background: none; border: 0; cursor: pointer; font-size: 1.02rem;
}
.seg svg { width: 12px; height: 12px; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 22px 0 0; }
.hero-shell {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: center;
  gap: 32px;
  min-height: 560px;
}
.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background: var(--magenta);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-copy { position: relative; z-index: 2; padding: 60px 56px 60px 60px; }
.hero-copy h1 { color: #fff; max-width: 12ch; }
.hero-sub {
  color: #fff; font-family: var(--display);
  font-weight: 600; font-size: 1.32rem;
  margin-bottom: 30px;
}
.hero-price {
  display: flex; align-items: baseline; gap: 16px;
  color: #fff; margin-bottom: 26px; flex-wrap: wrap;
}
.hero-price .label {
  font-family: var(--display); font-weight: 600;
  font-size: 1.08rem; line-height: 1.15; max-width: 11ch;
}
.price-figure { font-family: var(--display); font-weight: 700; display: inline-flex; align-items: flex-start; }
.price-figure .cur { font-size: 1.9rem; margin-top: .35em; }
.price-figure .big { font-size: 4.1rem; line-height: .95; letter-spacing: -0.03em; }
.price-figure .cents { font-size: 1.5rem; margin-top: .3em; }

.hero-list { list-style: none; margin: 0 0 30px; padding: 0; display: grid; gap: 13px; }
.hero-list li {
  display: flex; align-items: center; gap: 13px;
  color: #fff; font-size: 1.03rem;
}
.hero-list svg { width: 20px; height: 20px; flex: 0 0 auto; color: #fff; }

.hero-media { position: relative; z-index: 2; padding: 40px 40px 40px 0; }
.hero-photo { border-radius: var(--radius-lg); overflow: hidden; }

.hero-badge {
  position: absolute;
  left: -44px; top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-content: center; text-align: center;
  font-family: var(--display); color: var(--ink);
  box-shadow: 0 12px 34px rgba(0,0,0,.2);
  padding: 10px;
}
.hero-badge .top { font-size: .92rem; font-weight: 600; }
.hero-badge .amt { font-size: 3.3rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.hero-badge .amt sup { font-size: 1.4rem; top: -1.1em; }
.hero-badge .bot { font-size: .9rem; font-weight: 600; line-height: 1.2; }

.hero-foot {
  font-size: .78rem; color: var(--muted);
  padding: 16px 4px 0; max-width: 900px;
}

/* Photo placeholders -------------------------------------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, #eef0f6 0 14px, #e6e9f2 14px 28px);
  border: 2px dashed #c3c7d6;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  color: #8b90a5;
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 18px;
  aspect-ratio: 4 / 3;
}
.ph span { display: block; max-width: 26ch; }
.ph small { display: block; font-weight: 500; font-size: .74rem; opacity: .8; margin-top: 6px; }

/* ============================================================
   Plans
   ============================================================ */
.plans { position: relative; }
.plan-rail-wrap { position: relative; }
.plan-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 26px 4px 34px;
  scrollbar-width: none;
}
.plan-rail::-webkit-scrollbar { display: none; }

.plan {
  scroll-snap-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 34px 28px 30px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan--dark { background: var(--navy); color: #fff; }
.plan--dark .plan-name { color: var(--yellow); }
.plan--dark .plan-desc, .plan--dark .plan-price { color: #fff; }
.plan--dark .plan-gift { background: rgba(255,255,255,.11); color: #fff; }
.plan--dark .detail-toggle { color: #fff; }
.plan--dark .detail-list li { color: #fff; }
.plan--dark .detail-list svg { color: var(--yellow); }

.plan-flag {
  position: absolute;
  inset: -34px 0 auto 0;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--display); font-weight: 700;
  font-size: .92rem; text-align: center;
  padding: 9px 0 26px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: -1;
}
.plan--flagged { margin-top: 34px; }

.plan-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.plan-name {
  font-family: var(--display); font-weight: 700;
  font-size: 1.6rem; color: var(--green);
  line-height: 1.05; max-width: 11ch; letter-spacing: -0.02em;
}
.plan-price { text-align: right; font-family: var(--display); font-weight: 700; color: var(--ink); }
.plan-price .row { display: inline-flex; align-items: flex-start; }
.plan-price .cur { font-size: 1.5rem; margin-top: .3em; }
.plan-price .big { font-size: 3.2rem; line-height: .92; letter-spacing: -0.03em; }
.plan-price .per { font-size: 1.15rem; margin-top: .35em; }
.plan-price .note { display: block; font-size: .72rem; font-weight: 500; opacity: .78; margin-top: 4px; }

.plan-desc { margin: 20px 0 18px; color: var(--body); font-size: 1.02rem; min-height: 4.6em; }

.plan-gift {
  display: flex; align-items: center; gap: 11px;
  background: var(--surface-alt);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: .98rem;
  margin-bottom: 22px;
}
.plan-gift strong { font-family: var(--display); }
.plan-gift svg { width: 19px; height: 19px; color: var(--green); flex: 0 0 auto; }
.plan-gift--empty { visibility: hidden; }

.plan-cta { margin-top: auto; }

.detail-toggle {
  margin-top: 22px;
  background: none; border: 0; padding: 0;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; cursor: pointer;
}
.detail-toggle svg { width: 15px; height: 15px; transition: transform .22s ease; }
.detail-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.detail-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
}
.detail-list.is-open { max-height: 460px; margin-top: 18px; }
.detail-list li { display: flex; gap: 11px; font-size: .98rem; color: var(--body); }
.detail-list svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 4px; color: var(--green); }

.rail-btn {
  position: absolute; top: 46%;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: grid; place-items: center;
  cursor: pointer; z-index: 5;
  transition: transform .18s ease;
}
.rail-btn:hover { transform: scale(1.07); }
.rail-btn svg { width: 17px; height: 17px; color: var(--ink); }
.rail-btn--prev { left: -14px; }
.rail-btn--next { right: -14px; }

.plans-foot { text-align: center; margin-top: 8px; }
.plans-foot p { color: var(--body); font-size: .98rem; margin-bottom: 6px; }
.plans-foot a { text-decoration: underline; }

/* ============================================================
   Offer strip
   ============================================================ */
.offer { padding: 34px 0 54px; }
.offer-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 26px 32px;
  display: flex; align-items: center; gap: 26px;
  color: #fff;
}
.offer-icon { color: var(--yellow); flex: 0 0 auto; }
.offer-icon svg { width: 48px; height: 48px; }
.offer-text { margin-right: auto; }
.offer-text h3 { color: #fff; font-size: 1.6rem; margin-bottom: 4px; }
.offer-text p { margin: 0; color: rgba(255,255,255,.9); }
.offer-fine { text-align: center; font-size: .84rem; color: var(--muted); margin-top: 14px; }
.offer-fine a { text-decoration: underline; }

/* ============================================================
   Why switch
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.pillar-icon {
  width: 74px; height: 74px;
  border-radius: 18px;
  display: grid; place-items: center;
  color: #fff; margin-bottom: 24px;
}
.pillar-icon svg { width: 34px; height: 34px; }
.pillar:nth-child(1) .pillar-icon { background: #2bab6b; }
.pillar:nth-child(2) .pillar-icon { background: var(--cyan); }
.pillar:nth-child(3) .pillar-icon { background: var(--magenta); }
.pillar:nth-child(4) .pillar-icon { background: var(--navy); }
.pillar h3 { font-size: 1.22rem; margin-bottom: 12px; }
.pillar p { font-size: 1rem; color: var(--body); margin: 0; }

/* ============================================================
   Feature panels
   ============================================================ */
.panel {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 46px;
  margin-bottom: 34px;
}
.panel::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 21%;
  background: var(--cyan);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  border-radius: 0 0 var(--radius-lg) 0;
}
.panel--magenta::after { background: var(--magenta); }
.panel-body { position: relative; z-index: 2; padding-right: 56px; }
.panel-body h2 { max-width: 16ch; }
.panel-body > p { max-width: 40ch; color: var(--body); }
.panel-media { position: relative; z-index: 2; }
.panel-media .ph { aspect-ratio: 1 / 1; }

.check-list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 14px; }
.check-list { max-width: 40ch; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.04rem; color: var(--ink); }
.check-list svg { width: 18px; height: 18px; color: var(--green); flex: 0 0 auto; margin-top: 5px; }

.panel-fine { font-size: .74rem; color: var(--muted); max-width: 42ch; margin-bottom: 22px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 860px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none; border: 0;
  padding: 28px 8px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem;
  color: var(--ink); text-align: left; cursor: pointer;
}
.faq-q svg { width: 16px; height: 16px; flex: 0 0 auto; transition: transform .22s ease; }
.faq-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a.is-open { max-height: 460px; }
.faq-a p { padding: 0 8px 26px; margin: 0; color: var(--body); }
.faq-a p + p { padding-top: 0; }

/* ============================================================
   Call band
   ============================================================ */
.callband { background: var(--navy); color: #fff; padding: 68px 0; text-align: center; }
.callband h2 { color: #fff; }
.callband p { color: rgba(255,255,255,.88); max-width: 56ch; margin: 0 auto 28px; }
.callband-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.callband-num {
  font-family: var(--display); font-weight: 700;
  font-size: 2.4rem; color: var(--yellow);
  display: inline-block; margin-bottom: 8px;
}

/* ============================================================
   Legal + footer
   ============================================================ */
.legal { background: var(--navy); color: rgba(255,255,255,.82); padding: 62px 0 0; font-size: .84rem; }
.legal p { max-width: 100%; margin-bottom: 18px; line-height: 1.5; }
.legal strong { color: #fff; }
.legal hr { border: 0; border-top: 1px solid rgba(255,255,255,.22); margin: 34px 0; }

.footer { background: var(--navy); color: #fff; padding: 0 0 44px; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding-bottom: 44px;
}
.footer-col h4 { color: #fff; font-size: 1.02rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer-col a { color: rgba(255,255,255,.88); font-size: .97rem; }
.footer-col a:hover { color: var(--yellow); }

.footer-base { border-top: 1px solid rgba(255,255,255,.22); padding-top: 30px; }
.footer-brandrow { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 26px; }
.footer-address { font-family: var(--display); font-weight: 700; color: #fff; font-size: .95rem; line-height: 1.5; }
.footer-copy { color: rgba(255,255,255,.72); font-size: .85rem; margin-bottom: 12px; }
.footer-legal-links { display: flex; gap: 8px; flex-wrap: wrap; font-size: .85rem; }
.footer-legal-links a { color: rgba(255,255,255,.82); }
.footer-legal-links a:hover { color: var(--yellow); }
.footer-legal-links span { color: rgba(255,255,255,.4); }

.footer-disclaimer {
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.55;
}

/* ============================================================
   Simple content pages
   ============================================================ */
.doc { padding: 72px 0 90px; }
.doc-inner { max-width: 780px; margin-inline: auto; }
.doc h2 { font-size: 1.6rem; margin-top: 44px; }
.doc h1 { margin-bottom: 12px; }
.doc .updated { color: var(--muted); font-size: .92rem; margin-bottom: 34px; }
.doc ul { padding-left: 20px; display: grid; gap: 10px; margin-bottom: 22px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .search { display: none; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
}

@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .nav, .seg { display: none; }
  .burger { display: block; margin-left: auto; }

  .hero-shell { grid-template-columns: 1fr; min-height: 0; }
  .hero-shell::before { width: 100%; height: 46%; top: auto; bottom: 0; clip-path: polygon(0 22%, 100% 0, 100% 100%, 0 100%); }
  .hero-copy { padding: 44px 28px 26px; }
  .hero-copy h1 { max-width: none; }
  .hero-media { padding: 0 28px 44px; }
  .hero-badge { position: static; transform: none; width: 156px; height: 156px; margin: 0 auto 20px; }
  .hero-badge .amt { font-size: 2.6rem; }

  .panel { grid-template-columns: 1fr; padding: 32px 26px; }
  .panel::after { display: none; }
  .panel-body { padding-right: 0; }
  .panel-media { order: -1; }

  .offer-card { flex-direction: column; text-align: center; gap: 18px; }
  .offer-text { margin-right: 0; }

  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .rail-btn--prev { left: -6px; }
  .rail-btn--next { right: -6px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding-inline: 18px; }
  .pillars { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .plan-rail { grid-auto-columns: minmax(268px, 1fr); }
  .utility .wrap { justify-content: center; gap: 16px; }
  .utility-link { display: none; }
  .callband-num { font-size: 1.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
