/* MyShop Services — Orgill retailer landing */

:root {
  --navy: #0a1628;
  --navy-deep: #06101c;
  --navy-mid: #12233a;
  --copper: #c46b2b;
  --copper-bright: #e08a45;
  --copper-soft: rgba(196, 107, 43, 0.16);
  --cream: #f4efe6;
  --surface: #faf7f2;
  --ink: #1a1f2a;
  --muted: #5c6570;
  --line: rgba(10, 22, 40, 0.12);
  --white: #ffffff;
  --success: #2f7a4f;
  --radius: 4px;
  --max: 1120px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper-bright);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--copper);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand:hover {
  color: var(--white);
}

.brand__services {
  font-weight: 500;
  opacity: 0.78;
  font-size: 0.95em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.is-active {
  color: var(--white);
}

.nav__login {
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius);
}

.nav__login:hover {
  border-color: var(--copper-bright);
  background: var(--copper-soft);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 28, 0.92) 0%, rgba(6, 16, 28, 0.72) 42%, rgba(6, 16, 28, 0.35) 100%),
    url("img/hero-hardware.jpg") center / cover no-repeat;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero__glow {
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(196, 107, 43, 0.28), transparent 70%);
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 8.5rem 0 4.5rem;
  max-width: 38rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
  color: var(--white);
}

.hero__brand span {
  display: block;
  color: var(--copper-bright);
  font-weight: 600;
  font-size: 0.55em;
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 28ch;
}

.hero__lede {
  margin: 0 0 1.75rem;
  color: rgba(244, 239, 230, 0.82);
  font-size: 1.05rem;
  max-width: 36ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn--primary {
  background: var(--copper);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--copper-bright);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-mid);
  color: var(--white);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  background:
    linear-gradient(160deg, rgba(10, 22, 40, 0.94), rgba(6, 16, 28, 0.9)),
    url("img/section-atmosphere.jpg") center / cover no-repeat;
  color: rgba(244, 239, 230, 0.88);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  margin-bottom: 0.75rem;
}

.section__lede {
  color: var(--muted);
  max-width: 46rem;
  font-size: 1.08rem;
}

.section--navy .section__lede {
  color: rgba(244, 239, 230, 0.72);
}

/* Problem */
.problem-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 800px) {
  .problem-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.problem-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.problem-block p {
  color: var(--muted);
}

.problem-block--accent {
  padding-left: 1.25rem;
  border-left: 3px solid var(--copper);
}

/* Timeline */
.timeline {
  margin-top: 2.75rem;
  display: grid;
  gap: 0;
  counter-reset: step;
}

.timeline__item {
  position: relative;
  padding: 1.5rem 0 1.5rem 3.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  margin-left: 0.85rem;
}

.timeline__item:last-child {
  border-left-color: transparent;
}

.timeline__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -0.9rem;
  top: 1.45rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.timeline__item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.timeline__item p {
  margin: 0;
  max-width: 40rem;
}

.timeline__meta {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper-bright);
  letter-spacing: 0.02em;
}

/* Capabilities */
.capabilities {
  margin-top: 2.75rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.capability {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .capability {
    grid-template-columns: 11rem 1fr;
    gap: 2rem;
    align-items: baseline;
  }
}

.capability__label {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0;
}

.capability p {
  margin: 0;
  color: var(--muted);
}

.capability code {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
  background: rgba(10, 22, 40, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Proof */
.proof {
  display: grid;
  gap: 2rem;
  margin-top: 2.25rem;
  align-items: center;
}

@media (min-width: 800px) {
  .proof {
    grid-template-columns: minmax(0, 280px) 1fr;
    gap: 3rem;
  }
}

.proof__logo-wrap {
  background: var(--white);
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.proof__logo-wrap img {
  margin: 0 auto;
  max-height: 88px;
  width: auto;
}

.proof__copy h3 {
  font-size: 1.4rem;
}

.proof__copy p {
  color: var(--muted);
}

/* Audience */
.audience-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .audience-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 2rem;
  }
}

.audience-list li {
  padding: 0.15rem 0 0.15rem 1.1rem;
  position: relative;
  color: var(--muted);
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--copper);
  border-radius: 1px;
}

/* Pricing */
.pricing-promo {
  margin: 1.75rem 0 0;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(224, 138, 69, 0.45);
  background: rgba(196, 107, 43, 0.18);
  color: rgba(244, 239, 230, 0.95);
  border-radius: var(--radius);
  font-size: 1rem;
  max-width: 46rem;
}

.pricing-promo strong {
  color: var(--copper-bright);
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (min-width: 900px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.6rem 1.4rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.price-plan--featured {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--copper-bright);
  box-shadow: 0 0 0 1px rgba(224, 138, 69, 0.25);
}

.price-plan__badge {
  position: absolute;
  top: -0.65rem;
  left: 1.15rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  background: var(--copper);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

.price-plan__header {
  padding-top: 0.15rem;
}

.price-plan__name {
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
  color: var(--white);
}

.price-plan__tag {
  margin: 0;
  color: rgba(244, 239, 230, 0.65);
  font-size: 0.92rem;
}

.price-rows {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.price-row {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
}

.price-row__values {
  display: grid;
  gap: 0.15rem;
}

.price-row__was {
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.45);
  text-decoration: line-through;
}

.price-row__now {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--copper-bright);
}

.price-row__now--plain {
  color: var(--white);
}

.price-row__unit {
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.15rem;
  opacity: 0.75;
}

.price-row__hint {
  font-size: 0.8rem;
  color: rgba(244, 239, 230, 0.58);
}

.price-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  flex: 1;
}

.price-plan__features li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(244, 239, 230, 0.8);
  font-size: 0.95rem;
}

.price-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--copper-bright);
  border-radius: 1px;
}

.price-plan__cta {
  width: 100%;
  margin-top: auto;
}

.price-plan .btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
}

.pricing-footnote {
  margin: 1.75rem 0 0;
  color: rgba(244, 239, 230, 0.55);
  font-size: 0.9rem;
  max-width: 46rem;
}

/* Contact */
.contact-panel {
  margin-top: 2.25rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .contact-panel {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 24rem;
  transition: color 0.2s var(--ease);
}

.contact-link:hover {
  color: var(--copper);
}

.contact-link__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-link__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-address {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(244, 239, 230, 0.65);
  padding: 2.5rem 0;
  font-size: 0.92rem;
}

.site-footer a {
  color: rgba(244, 239, 230, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--copper-bright);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes glowPulse {
  from {
    opacity: 0.65;
  }
  to {
    opacity: 1;
  }
}

/* Mobile nav */
@media (max-width: 860px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: 4.25rem 1rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 22, 40, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 0.5rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .nav__login {
    border: 0;
    margin-top: 0.25rem;
    background: var(--copper);
    color: var(--white);
    text-align: center;
  }

  .hero__content {
    padding: 7rem 0 3.25rem;
  }

  .section {
    padding: 3.75rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__media,
  .hero__glow,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
