/* Standalone page reset */
html { scroll-behavior: smooth; }
body { margin: 0; background: #ffffff; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* ==========================================
   Let Sally sector landing pages
   Shared conversion-focused landing template
   ========================================== */

:root {
  --sally-navy: #001744;
  --sally-navy-deep: #000f30;
  --sally-blue: #0066ff;
  --sally-blue-hover: #0054d6;
  --sally-ink: #111827;
  --sally-muted: #5d6678;
  --sally-line: #dfe5ef;
  --sally-soft: #f4f7fb;
  --sally-white: #ffffff;
}

.sector-landing {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--sally-white);
  color: var(--sally-ink);
  font-family: "Red Hat Display", sans-serif;
}

.sector-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.sector-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 22px 0;
}

.sector-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sector-brand { display: inline-flex; align-items: center; }
.sector-brand img {
  width: 155px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.sector-nav__actions { display: flex; align-items: center; gap: 12px; }
.sector-nav__login {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 12px;
}
.sector-nav__login:hover { color: #fff; }

.sector-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.sector-button:hover { transform: translateY(-2px); }
.sector-button--small { min-height: 42px; padding: 0 20px; font-size: 14px; }
.sector-button--blue {
  color: #fff;
  background: var(--sally-blue);
  box-shadow: 0 14px 30px rgba(0, 102, 255, .28);
}
.sector-button--blue:hover { background: var(--sally-blue-hover); }
.sector-button--light {
  background: #fff;
  color: var(--sally-navy);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.sector-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 760px;
  padding: 138px 0 92px;
  background:
    radial-gradient(circle at 84% 20%, rgba(0,102,255,.34), transparent 28%),
    radial-gradient(circle at 62% 85%, rgba(19,81,180,.30), transparent 30%),
    var(--sally-navy);
  color: #fff;
}
.sector-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 72px;
  background: #fff;
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}

.sector-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 70px;
}

.sector-eyebrow, .sector-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sally-blue);
}
.sector-eyebrow { color: #83b8ff; }
.sector-kicker--light { color: #9bc7ff; }

.sector-hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: 60px;
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 850;
  color: #fff;
}
.sector-hero h1 .headline-accent { color: #73adff; }
.sector-hero__lead {
  max-width: 620px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255,255,255,.94);
}
.sector-hero__support {
  max-width: 610px;
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.67);
}
.sector-hero__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.sector-hero__microcopy { font-size: 13px; color: rgba(255,255,255,.62); }

.sector-demo-wrap { position: relative; }
.sector-demo-glow {
  position: absolute;
  inset: 8% 5% -4% 8%;
  border-radius: 44px;
  background: rgba(0,102,255,.30);
  filter: blur(40px);
}
.sector-demo-browser {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.20);
  background: #fff;
  box-shadow: 0 34px 80px rgba(0, 0, 0, .40);
  transform: rotate(1.25deg);
}
.sector-demo-browser__bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  background: #eef2f7;
  border-bottom: 1px solid #dbe2eb;
}
.sector-demo-browser__bar > span { width: 9px; height: 9px; border-radius: 50%; background: #aeb8c5; }
.sector-demo-browser__address {
  margin-left: 9px;
  flex: 1;
  max-width: 250px;
  padding: 7px 12px;
  border-radius: 8px;
  background: #fff;
  color: #8791a1;
  font-size: 11px;
}
.sector-demo-stage { position: relative; aspect-ratio: 16 / 10; background: #f7f9fc; }
.sector-demo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sector-demo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  background: linear-gradient(145deg, #f8fbff, #eef4ff);
  color: var(--sally-navy);
}
.sector-demo-video:not([data-video-ready="true"]) { opacity: 0; }
.sector-demo-video[data-video-ready="true"] + .sector-demo-fallback { display: none; }
.sector-demo-fallback__label { font-size: 13px; font-weight: 900; letter-spacing: .18em; color: var(--sally-blue); margin-bottom: 28px; }
.sector-demo-flow { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }
.sector-demo-file, .sector-demo-folder {
  min-height: 112px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #dce5f1;
  box-shadow: 0 16px 30px rgba(0,23,68,.10);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
}
.sector-demo-file__icon {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px;
  background: #eaf2ff; color: var(--sally-blue); font-size: 10px; font-weight: 900;
}
.sector-demo-folder__icon {
  width: 48px; height: 34px; border-radius: 6px; background: var(--sally-blue); position: relative; display: block;
}
.sector-demo-folder__icon::before {
  content: ""; position: absolute; left: 4px; top: -6px; width: 21px; height: 9px; border-radius: 5px 5px 0 0; background: var(--sally-blue);
}
.sector-demo-pulse { font-size: 26px; color: var(--sally-blue); animation: sallyPulse 1.5s ease-in-out infinite; }
.sector-demo-fallback > p { margin: 26px 0 0; text-align: center; font-size: 20px; font-weight: 900; }
.sector-demo-caption { margin: 15px 0 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.62); }
@keyframes sallyPulse { 50% { transform: translateX(5px); opacity: .45; } }

.sector-question { padding: 115px 0 105px; background: #fff; }
.sector-question__inner { text-align: center; }
.sector-question h2, .sector-math h2, .sector-how h2, .sector-benefits h2, .sector-storage h2, .sector-final-cta h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 900;
  color: var(--sally-navy);
}
.sector-section-lead, .sector-section-heading > p:last-child {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--sally-muted);
  font-size: 18px;
  line-height: 1.65;
}
.sector-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.sector-time-option {
  min-height: 92px;
  padding: 18px;
  border: 2px solid #dce3ee;
  border-radius: 18px;
  background: #fff;
  color: var(--sally-navy);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: border .16s ease, transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.sector-time-option:hover, .sector-time-option.is-selected {
  border-color: var(--sally-blue);
  background: #f5f9ff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,102,255,.10);
}
.sector-time-result {
  margin: 36px auto 0;
  max-width: 760px;
  padding: 34px 38px;
  border-radius: 22px;
  background: var(--sally-navy);
  color: #fff;
}
.sector-time-result__eyebrow { margin: 0 0 5px; color: #9bc7ff; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.sector-time-result__number { font-size: clamp(42px, 6vw, 72px); line-height: 1; font-weight: 900; letter-spacing: -.04em; }
.sector-time-result__copy { margin: 12px auto 16px; max-width: 590px; color: rgba(255,255,255,.78); font-size: 17px; }
.sector-text-link { color: #fff; font-weight: 800; text-decoration: none; }

.sector-math { padding: 100px 0; background: var(--sally-soft); }
.sector-math__inner { text-align: center; }
.sector-equation {
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.sector-equation__item { min-width: 180px; padding: 28px 24px; border-radius: 20px; background: #fff; box-shadow: 0 12px 30px rgba(0,23,68,.08); }
.sector-equation__item strong { display: block; color: var(--sally-navy); font-size: 42px; line-height: 1; font-weight: 900; }
.sector-equation__item span { display: block; margin-top: 8px; color: var(--sally-muted); font-weight: 700; }
.sector-equation__item--accent { background: var(--sally-blue); }
.sector-equation__item--accent strong, .sector-equation__item--accent span { color: #fff; }
.sector-equation__symbol { color: #98a2b2; font-size: 34px; font-weight: 900; }
.sector-math__closing { margin: 34px 0 0; color: var(--sally-navy); font-size: 21px; font-weight: 900; }

.sector-how, .sector-benefits, .sector-storage { padding: 110px 0; }
.sector-section-heading { max-width: 800px; margin: 0 auto; text-align: center; }
.sector-section-heading--left { margin-left: 0; text-align: left; }
.sector-section-heading--left h2 { max-width: 780px; }
.sector-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.sector-step { position: relative; padding: 34px 30px 36px; border-radius: 22px; background: var(--sally-navy); color: #fff; min-height: 260px; box-shadow: 0 18px 45px rgba(0,23,68,.14); }
.sector-step__number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--sally-blue); font-weight: 900; }
.sector-step h3 { margin: 28px 0 10px; color: #fff; font-size: 23px; line-height: 1.2; }
.sector-step p { margin: 0; color: #c8d4e7; font-size: 16px; line-height: 1.65; }

.sector-benefits { background: var(--sally-soft); }
.sector-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.sector-benefit-card { padding: 30px; border: 1px solid #e1e6ef; border-radius: 20px; background: #fff; }
.sector-benefit-card__tick { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: #e9f2ff; color: var(--sally-blue); font-weight: 900; }
.sector-benefit-card h3 { margin: 22px 0 10px; color: var(--sally-navy); font-size: 21px; }
.sector-benefit-card p { margin: 0; color: var(--sally-muted); line-height: 1.65; }

.sector-storage__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 80px; align-items: center; }
.sector-storage h2 span { color: var(--sally-blue); }
.sector-storage__grid > div:first-child > p:last-child { max-width: 590px; margin: 24px 0 0; color: var(--sally-muted); font-size: 17px; line-height: 1.7; }
.sector-storage__providers { display: grid; gap: 15px; }
.sector-provider { display: flex; align-items: center; gap: 18px; min-height: 82px; padding: 14px 22px; border: 1px solid #e0e6ef; border-radius: 18px; background: #fff; box-shadow: 0 12px 30px rgba(0,23,68,.07); color: var(--sally-navy); font-weight: 800; }
.sector-provider img { width: 45px; height: 45px; object-fit: contain; }

.sector-final-cta { padding: 110px 0; background: var(--sally-navy); color: #fff; text-align: center; }
.sector-final-cta__inner { max-width: 900px; }
.sector-final-cta h2 { color: #fff; font-size: clamp(40px, 5vw, 68px); }
.sector-final-cta p:not(.sector-kicker) { max-width: 670px; margin: 20px auto 32px; color: rgba(255,255,255,.72); font-size: 18px; line-height: 1.65; }
.sector-final-cta__microcopy { display: block; margin-top: 16px; color: rgba(255,255,255,.55); font-size: 13px; }

@media (max-width: 980px) {
  .sector-hero { min-height: auto; }
  .sector-hero__grid, .sector-storage__grid { grid-template-columns: 1fr; }
  .sector-hero__grid { gap: 52px; }
  .sector-demo-wrap { max-width: 700px; }
  .sector-time-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-steps, .sector-benefit-grid { grid-template-columns: 1fr; }
  .sector-step { min-height: 0; }
  .sector-storage__grid { gap: 45px; }
}

@media (max-width: 640px) {
  .sector-shell { width: min(100% - 32px, 1160px); }
  .sector-nav { padding-top: 16px; }
  .sector-brand img { width: 122px; }
  .sector-nav__login { display: none; }
  .sector-button--small { min-height: 38px; padding: 0 15px; font-size: 13px; }
  .sector-hero { padding: 112px 0 82px; }
  .sector-hero h1 { font-size: clamp(44px, 13vw, 62px); }
  .sector-hero__lead { font-size: 18px; }
  .sector-hero__cta-row { align-items: flex-start; flex-direction: column; gap: 10px; }
  .sector-demo-browser { transform: none; border-radius: 16px; }
  .sector-demo-fallback { padding: 22px; }
  .sector-demo-flow { grid-template-columns: 1fr; }
  .sector-demo-pulse { transform: rotate(90deg); justify-self: center; }
  .sector-question, .sector-how, .sector-benefits, .sector-storage, .sector-final-cta { padding: 80px 0; }
  .sector-time-grid { grid-template-columns: 1fr; }
  .sector-time-option { min-height: 72px; }
  .sector-time-result { padding: 28px 22px; }
  .sector-equation { flex-direction: column; gap: 13px; }
  .sector-equation__item { width: 100%; min-width: 0; }
  .sector-equation__symbol { line-height: 1; }
}

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