:root {
  --ink: #08203e;
  --muted: #526070;
  --paper: #fbfaf7;
  --line: #e3e0d9;
  --accent: #e36b16;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 52px) 0 36px;
}

.intro {
  max-width: 720px;
}

.home-intro {
  max-width: 980px;
}

.home-intro h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5.55vw, 4.75rem);
}

.home-intro .lede {
  max-width: 720px;
}

.logo {
  width: min(306px, 78vw);
  height: auto;
  margin-bottom: clamp(14px, 2.55vw, 24px);
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6.35vw, 5.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.mobile-break {
  display: none;
}

.lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.28rem);
  line-height: 1.45;
}

.work {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.products-section {
  margin-top: clamp(56px, 9vw, 96px);
}

.products-section > h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.products-lede {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.45;
}

.business-section {
  position: relative;
  overflow: hidden;
  max-width: none;
  margin-top: clamp(56px, 9vw, 96px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(247, 239, 227, 0.5);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.94) 0%, rgba(4, 18, 37, 0.84) 47%, rgba(4, 18, 37, 0.45) 74%, rgba(4, 18, 37, 0.16) 100%),
    url("./assets/sports-hero.webp") right center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 32, 62, 0.12);
}

.business-section h2 {
  max-width: 820px;
  color: #f7efe3;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.business-section p:not(.section-kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(247, 239, 227, 0.9);
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
  line-height: 1.58;
}

.business-section .business-lede {
  color: #f7efe3;
  font-weight: 750;
}

.business-section .contact-button {
  border-color: #f7efe3;
  background: #f7efe3;
  color: var(--ink);
}

.business-section .contact-button.secondary {
  border-color: rgba(247, 239, 227, 0.8);
  background: transparent;
  color: #f7efe3;
}

.business-section .contact-button:hover,
.business-section .contact-button.secondary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-height: 178px;
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

a.card {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.card:hover {
  border-color: rgba(227, 107, 22, 0.55);
  box-shadow: 0 16px 34px rgba(8, 32, 62, 0.08);
  transform: translateY(-2px);
}

.card-heading {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1;
}

.dr-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.dr-wordmark {
  color: #000;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.one-win-logo {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.card p strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.card-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

a.card:hover .card-link {
  color: var(--accent);
}

.philosophy {
  max-width: 760px;
  margin-top: clamp(46px, 8vw, 84px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.philosophy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.philosophy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.55;
}

.philosophy p strong {
  color: var(--ink);
}

.philosophy-lede {
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(46px, 8vw, 84px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.contact p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.4;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.home-contact {
  align-items: flex-start;
  justify-content: flex-start;
}

.home-contact .contact-button {
  margin-top: 4px;
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  width: min(260px, 58vw);
  margin-bottom: 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  padding-top: 8px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
}

.site-nav a + a {
  position: relative;
  margin-left: 24px;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: rgba(83, 96, 119, 0.42);
  transform: translateY(-50%);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav .nav-pill,
.site-nav a.nav-pill {
  justify-content: center;
  min-height: 28px;
  padding: 5px 12px 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff7ec;
  box-shadow: 0 10px 24px rgba(225, 106, 25, 0.18);
}

.site-nav .nav-pill:hover,
.site-nav .nav-pill:focus-visible,
.site-nav .nav-pill[aria-current="page"],
.site-nav a.nav-pill:hover,
.site-nav a.nav-pill:focus-visible,
.site-nav a.nav-pill[aria-current="page"] {
  background: var(--accent);
  color: #fff7ec;
}

.home-page,
.about-page {
  max-width: 1120px;
}

.partnership-hero {
  max-width: 900px;
  margin-top: clamp(50px, 7vw, 88px);
}

.home-page .partnership-hero {
  margin-top: clamp(26px, 4.2vw, 50px);
}

.partnership-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.8vw, 6.1rem);
  line-height: 0.98;
}

.partnership-hero .lede {
  max-width: 760px;
}

.home-image-panel {
  min-height: clamp(210px, 31vw, 340px);
  display: flex;
  align-items: flex-end;
  margin-top: clamp(28px, 4vw, 48px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(247, 239, 227, 0.5);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.92) 0%, rgba(4, 18, 37, 0.72) 42%, rgba(4, 18, 37, 0.16) 100%),
    url("./assets/sports-hero.webp") right center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 32, 62, 0.12);
}

.home-image-panel .section-kicker {
  margin-bottom: 12px;
  color: var(--accent);
}

.home-image-panel h2 {
  max-width: 720px;
  color: #f7efe3;
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1.08;
}

.home-image-panel p:not(.section-kicker) {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(247, 239, 227, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  font-weight: 800;
  line-height: 1.45;
}

.home-capabilities,
.home-audience,
.home-apps-teaser {
  margin-top: clamp(42px, 6vw, 70px);
}

.home-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-capability-card {
  min-height: 156px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.home-capability-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.12;
}

.home-capability-card p,
.home-audience p,
.home-apps-teaser p,
.about-story p,
.about-meet p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.15rem);
  line-height: 1.58;
}

.home-why {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(24px, 5vw, 54px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 70px);
  padding: clamp(24px, 4.5vw, 44px);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.98) 0%, rgba(7, 26, 51, 0.94) 52%, rgba(7, 26, 51, 0.68) 100%),
    url("./assets/about-meet-background.webp") right center / cover no-repeat;
  color: #fff;
}

.home-why h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.home-why .section-kicker {
  color: var(--accent);
}

.home-why-copy {
  display: grid;
  gap: 16px;
}

.home-why-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.55vw, 1.16rem);
  line-height: 1.58;
}

.home-audience {
  max-width: 900px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.home-apps-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.92) 0%, rgba(4, 18, 37, 0.82) 50%, rgba(4, 18, 37, 0.34) 100%),
    url("./assets/home-apps-teaser-wide.webp") center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 32, 62, 0.12);
}

.home-apps-teaser h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.08;
}

.home-apps-teaser p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.home-apps-teaser .section-kicker {
  color: var(--accent);
}

.home-apps-teaser .contact-button.secondary {
  border-color: rgba(247, 239, 227, 0.72);
  color: #f7efe3;
}

.home-apps-teaser .contact-button.secondary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.about-hero {
  max-width: 900px;
  margin-top: clamp(26px, 4.2vw, 50px);
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6.2vw, 5.6rem);
  line-height: 0.98;
}

.about-story {
  max-width: 840px;
  margin-top: clamp(42px, 6vw, 70px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.about-story h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.08;
}

.about-meet {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-top: clamp(42px, 6vw, 70px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.96) 0%, rgba(4, 18, 37, 0.9) 48%, rgba(4, 18, 37, 0.72) 100%),
    url("./assets/about-meet-background.webp") center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 32, 62, 0.12);
}

.about-meet h2 {
  color: #fff7ec;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
}

.about-meet .section-kicker {
  color: var(--accent);
}

.about-meet p {
  color: rgba(255, 247, 236, 0.82);
}

.about-headshot-wrap {
  overflow: hidden;
  border-radius: 10px;
  background: var(--accent);
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 42px rgba(8, 32, 62, 0.16);
}

.about-headshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
}

.about-photo-panel {
  display: grid;
  gap: 12px;
}

.about-linkedin {
  justify-self: start;
  margin-top: 0;
  color: rgba(255, 247, 236, 0.88);
}

.about-linkedin:hover {
  color: #fff7ec;
}

.about-cta {
  margin-top: clamp(42px, 6vw, 70px);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(36px, 6vw, 64px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
}

.site-footer p + p {
  margin-top: 5pt;
}

.site-footer p {
  color: var(--ink);
  font-weight: 500;
}

.site-footer p + p {
  color: var(--muted);
  font-weight: 400;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 5pt;
}

.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.legal-page {
  max-width: 780px;
}

.legal-page h1 {
  margin-top: 34px;
  font-size: clamp(2.45rem, 6vw, 4.6rem);
  line-height: 1.08;
}

.legal-page section {
  margin-top: 34px;
}

.legal-page h2 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.legal-page p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.legal-page a {
  color: var(--ink);
  font-weight: 800;
}

.legal-page a.contact-button {
  color: #fff;
}

.legal-page a.contact-button.secondary {
  color: var(--ink);
}

.legal-date {
  margin-top: 14px;
}

.legal-note {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
}

.legal-back:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.contact-back {
  min-height: 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-page {
  max-width: 900px;
}

.contact-hero {
  margin-top: 34px;
}

.contact-logo {
  width: min(270px, 74vw);
  height: auto;
  margin-bottom: 24px;
}

.contact-hero h1 {
  margin-top: 0;
}

.contact-hero p {
  max-width: 720px;
  margin-top: 10px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-option {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.contact-option p {
  margin-bottom: 0;
}

.product-support-options {
  margin-top: 28px;
}

.contact-button.secondary {
  background: transparent;
  color: var(--ink);
}

.contact-button.secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.support-page {
  max-width: 780px;
}

.support-hero {
  max-width: 700px;
  margin-top: 34px;
}

.support-hero h1 {
  margin: 0 0 18px;
}

.support-hero p {
  margin-top: 0;
}

.support-note {
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.support-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.support-section-heading {
  margin-bottom: 20px;
}

.support-section-heading p {
  margin-bottom: 0;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.support-form small {
  color: var(--muted);
  font-weight: 600;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 13px;
}

.support-form textarea {
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(227, 107, 22, 0.16);
}

.support-form .full,
.support-form button {
  grid-column: 1 / -1;
}

.support-form button {
  justify-self: start;
  border: 1px solid var(--ink);
  cursor: pointer;
}

.support-honey {
  display: none;
}

.support-help {
  padding-top: 4px;
}

.support-help ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.support-help li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.4;
}

.support-help li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 900;
}

.support-about {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.support-about p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.support-about h2 {
  color: var(--accent);
}

.support-about .contact-button.secondary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.support-about .contact-button.secondary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.clients-page {
  max-width: 1180px;
}

.clients-hero {
  max-width: 760px;
  margin-top: 34px;
}

.clients-hero h1 {
  margin: 0 0 18px;
}

.clients-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.55;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(34px, 5vw, 52px);
}

.client-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

a.client-card {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.client-card:hover {
  border-color: rgba(227, 107, 22, 0.42);
  box-shadow: 0 16px 34px rgba(8, 32, 62, 0.08);
  transform: translateY(-2px);
}

.client-preview {
  min-height: 162px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.client-preview-art {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.browser-bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border-bottom: 1px solid rgba(8, 32, 62, 0.08);
  background: rgba(251, 250, 247, 0.9);
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(8, 32, 62, 0.2);
}

.preview-body {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 18px;
  color: #fff;
  text-align: center;
}

.preview-art-body {
  min-height: 150px;
  padding: 0;
}

.client-logo-panel {
  display: flex;
  width: min(88%, 250px);
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.client-logo-panel-dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(4, 10, 18, 0.78);
}

.client-logo-img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.client-logo-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
}

.client-logo-mark-large {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.client-logo-wordmark {
  color: #fff;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.preview-body span {
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hotclicks-logo {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.07em;
}

.hotclicks-logo span {
  margin: 0;
  color: #ff6a21;
  font: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

.brenda-logo-panel {
  justify-content: flex-start;
}

.brenda-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: #f8efe8;
}

.zuccaro-logo-panel {
  background: rgba(255, 247, 228, 0.94);
}

.ehome-logo-panel {
  width: min(92%, 270px);
}

.ehome-logo-panel .client-logo-img {
  max-height: 64px;
}

.vibes-logo-panel {
  width: min(86%, 232px);
  justify-content: flex-start;
}

.vibes-logo {
  color: #f7f7f7;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  letter-spacing: 0.08em;
}

.dr-preview .preview-body {
  background: linear-gradient(135deg, #e66716 0%, #0b0b0b 82%);
}

.hotclicks-preview .preview-body {
  background: linear-gradient(135deg, #ff6a21 0%, #0c0b09 82%);
}

.brenda-preview .preview-body {
  background: linear-gradient(135deg, #315b39 0%, #5a3474 100%);
}

.zuccaro-preview .preview-body {
  background: linear-gradient(135deg, #6f1824 0%, #c49a48 100%);
}

.ehome-preview .preview-body {
  background: linear-gradient(135deg, #c97a45 0%, #111 84%);
}

.vibes-preview .preview-body {
  background: linear-gradient(135deg, #e21414 0%, #050505 82%);
}

.client-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.client-card p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.2vw, 1.08rem);
  line-height: 1.56;
}

.client-link {
  display: inline-flex;
  align-self: flex-start;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.client-link:hover {
  color: var(--accent);
}

.clients-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.clients-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.clients-note a {
  color: var(--ink);
  font-weight: 900;
}

.clients-note a:hover {
  color: var(--accent);
}

.websites-page {
  max-width: 1180px;
}

.websites-hero {
  max-width: 820px;
  margin-top: 34px;
}

.websites-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.websites-hero p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.5;
}

.websites-hero .hero-button-note {
  max-width: 640px;
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(1.06rem, 1.6vw, 1.18rem);
  font-weight: 800;
  line-height: 1.45;
}

.pricing-text-link {
  display: inline-flex;
  margin-left: 14px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(227, 107, 22, 0.48);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.pricing-text-link:hover {
  color: var(--accent);
}

.websites-intro {
  margin-top: clamp(44px, 7vw, 78px);
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.websites-intro h2,
.websites-section h2,
.websites-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

.websites-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.websites-section {
  margin-top: clamp(46px, 7vw, 82px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.website-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.website-service {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.website-service h3,
.client-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.website-service p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.25vw, 1.1rem);
  line-height: 1.56;
}

.why-frankly {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.why-frankly h2 {
  color: #fff;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-list li {
  position: relative;
  min-height: 52px;
  padding: 15px 15px 15px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.25;
}

.why-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.compact-client-grid {
  margin-top: 0;
}

.compact-client-grid .client-card {
  min-height: 292px;
}

.compact-client-grid .client-card p {
  flex: 0;
}

.drlori-preview .preview-body {
  background: linear-gradient(135deg, #1c5c5a 0%, #eaf3f3 100%);
}

.drlori-logo-panel {
  width: min(88%, 250px);
  background: rgba(255, 255, 255, 0.94);
}

.websites-cta {
  margin-top: clamp(48px, 7vw, 84px);
  padding: clamp(28px, 5vw, 46px);
  border-radius: 12px;
  background: rgba(227, 107, 22, 0.1);
  text-align: center;
}

.websites-cta p {
  max-width: 660px;
  margin: 14px auto 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.mockup-request-section {
  margin-top: clamp(46px, 7vw, 82px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.mockup-request-section .support-section-heading {
  max-width: 780px;
}

.mockup-request-section h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

.mockup-request-section .support-section-heading p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.16rem);
  line-height: 1.62;
}

.mockup-form {
  margin-top: 22px;
}

.form-turnaround {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.pricing-page {
  max-width: 1180px;
}

.pricing-hero {
  max-width: 850px;
  margin-top: 34px;
}

.pricing-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.pricing-hero p:not(.section-kicker) {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.5;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-intro {
  margin-top: clamp(44px, 7vw, 78px);
  padding: clamp(22px, 4vw, 34px);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.pricing-intro h2,
.pricing-bundle h2,
.pricing-disclosure h2,
.pricing-checkout h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

.pricing-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pricing-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-plan-card {
  position: relative;
  min-height: 620px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
}

.pricing-plan-card.featured {
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 46px rgba(8, 32, 62, 0.08);
}

.pricing-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(227, 107, 22, 0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-card-top h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.pricing-card-top p {
  min-height: 48px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(4rem, 9vw, 6rem);
  font-weight: 950;
  line-height: 0.86;
}

.pricing-price span {
  margin-top: 8px;
  font-size: 1.7rem;
}

.pricing-price small {
  align-self: flex-end;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 900;
}

.pricing-terms,
.pricing-savings {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-savings {
  color: var(--ink);
  font-weight: 800;
}

.pricing-feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.pricing-feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.pricing-bundle {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
  align-items: center;
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  border: 2px solid rgba(227, 107, 22, 0.78);
  border-radius: 12px;
  background: rgba(227, 107, 22, 0.08);
}

.pricing-bundle p:not(.section-kicker),
.pricing-checkout p,
.pricing-disclosure p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.pricing-bundle-price {
  text-align: right;
}

.pricing-bundle-price strong {
  display: block;
  color: var(--ink);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 950;
  line-height: 0.9;
}

.pricing-bundle-price span {
  color: var(--muted);
  font-weight: 900;
}

.pricing-addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-addon {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
}

.pricing-addon h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
}

.pricing-addon p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.pricing-addon strong {
  color: var(--accent);
  font-size: 0.95rem;
}

.pricing-disclosure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(46px, 7vw, 82px);
}

.pricing-disclosure > div {
  padding: clamp(22px, 4vw, 30px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.pricing-checkout {
  margin-top: clamp(48px, 7vw, 84px);
  padding: clamp(24px, 4vw, 38px);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.pricing-checkout h2 {
  color: #fff;
}

.pricing-checkout p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.pricing-checkout-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.pricing-checkout .contact-button {
  width: 100%;
  min-height: 54px;
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pricing-checkout .contact-button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.pricing-checkout .contact-button:hover,
.pricing-checkout .contact-button.secondary:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.pricing-checkout .pricing-fine-print {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  font-weight: 800;
}

.sports-page {
  max-width: 1180px;
}

.sports-hero {
  position: relative;
  min-height: clamp(640px, 74vh, 800px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.94) 0%, rgba(4, 18, 37, 0.8) 38%, rgba(4, 18, 37, 0.18) 72%),
    url("./assets/sports-hero.webp") right center / cover no-repeat;
  color: #fff;
}

.sports-hero > * {
  position: relative;
  z-index: 1;
}

.sports-hero a[aria-label="Frankly home"] {
  width: fit-content;
}

.sports-hero .section-kicker {
  margin-top: 2px;
  color: var(--accent);
}

.sports-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(3.9rem, 7.15vw, 6.35rem);
  line-height: 0.98;
}

.sports-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.sports-hero-list {
  margin: 18px 0 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  font-weight: 850;
  line-height: 1.45;
}

.sports-hero .lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.sports-hero .lede:first-of-type {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.sports-hero .lede + .lede {
  margin-top: 12px;
}

.sports-hero .contact-button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.sports-hero .contact-button:not(.secondary) {
  border-color: #f7efe3;
  background: #f7efe3;
  color: var(--ink);
}

.sports-hero .contact-button.secondary:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.sports-hero .contact-button:not(.secondary):hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--ink);
}

.sports-section {
  margin-top: clamp(56px, 9vw, 96px);
}

.sports-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.08;
}

.sports-section .section-heading p:not(.section-kicker),
.sports-section-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.65vw, 1.18rem);
  line-height: 1.58;
}

.sports-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sports-service-card {
  min-height: 176px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48)),
    var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sports-service-card:hover {
  border-color: rgba(227, 107, 22, 0.48);
  box-shadow: 0 16px 34px rgba(8, 32, 62, 0.08);
  transform: translateY(-2px);
}

.sports-service-card-wide {
  grid-column: span 2;
}

.sports-service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.15;
}

.sports-service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.25vw, 1.1rem);
  line-height: 1.56;
}

.sports-philosophy {
  display: block;
  max-width: 900px;
  margin-top: clamp(48px, 8vw, 88px);
  padding: clamp(26px, 4.5vw, 42px);
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
}

.sports-philosophy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.sports-philosophy .section-kicker {
  color: var(--accent);
}

.sports-copy-stack p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.65vw, 1.24rem);
  line-height: 1.6;
}

.sports-copy-stack {
  max-width: 720px;
  margin-top: 28px;
}

.sports-copy-stack p:last-child {
  margin-bottom: 0;
}

.sports-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sports-trust-grid li {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 830;
  line-height: 1.25;
}

.sports-trust-note {
  max-width: 900px;
  margin-top: clamp(34px, 5.5vw, 56px);
  padding: clamp(24px, 4vw, 36px);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.sports-trust-note h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.sports-trust-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.85vw, 1.24rem);
  line-height: 1.6;
}

.sports-meet-frank {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: center;
  gap: clamp(22px, 4vw, 36px);
}

.sports-headshot-wrap {
  display: grid;
  gap: 12px;
}

.sports-headshot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 8;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(8, 32, 62, 0.14);
}

.sports-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
  transition: color 160ms ease, transform 160ms ease;
}

.sports-linkedin-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.sports-linkedin-link:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.sports-text-section {
  max-width: 900px;
  padding-top: clamp(26px, 4vw, 34px);
  border-top: 1px solid var(--line);
}

.sports-experience {
  max-width: 860px;
  margin-top: clamp(56px, 9vw, 96px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.sports-experience h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.sports-experience p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.6;
}

.sports-cta {
  margin-top: clamp(56px, 9vw, 96px);
}

.apps-page {
  max-width: 1120px;
}

.apps-hero {
  max-width: 830px;
  margin-top: clamp(26px, 4.2vw, 50px);
}

.apps-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.apps-hero-statement {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 900;
  line-height: 1.08;
}

.apps-intro-copy {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.58;
}

.apps-philosophy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(42px, 6vw, 72px);
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(247, 239, 227, 0.5);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(4, 18, 37, 0.9) 0%, rgba(4, 18, 37, 0.76) 52%, rgba(4, 18, 37, 0.28) 100%),
    url("./assets/home-apps-background.webp") center / cover no-repeat;
  box-shadow: 0 18px 44px rgba(8, 32, 62, 0.12);
  color: #fff;
}

.apps-philosophy > div {
  align-self: center;
}

.apps-philosophy h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.apps-philosophy .section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
}

.apps-philosophy > p {
  margin: clamp(30px, 4vw, 40px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.02rem, 1.55vw, 1.15rem);
  line-height: 1.58;
}

.apps-section {
  margin-top: clamp(40px, 6vw, 68px);
}

.apps-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.08;
}

.apps-showcase {
  display: grid;
  gap: 16px;
}

.apps-product-card {
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
    var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.apps-product-card:hover {
  border-color: rgba(227, 107, 22, 0.48);
  box-shadow: 0 16px 34px rgba(8, 32, 62, 0.08);
  transform: translateY(-2px);
}

.apps-product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 26px);
}

.apps-product-card .apps-product-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.apps-product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.08;
}

.apps-product-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.52;
}

.apps-card-line {
  color: var(--ink);
  font-weight: 850;
}

.apps-product-card .apps-availability {
  display: block;
  margin-top: 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.apps-product-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  transition: color 160ms ease;
}

.apps-product-link::after {
  content: "\2192";
  display: inline-block;
  font-size: 1.08em;
  line-height: 1;
  transform: translateY(-0.02em);
  transition: transform 160ms ease;
}

.apps-product-card:hover .apps-product-link {
  color: var(--accent);
}

.apps-product-card:hover .apps-product-link::after {
  transform: translate(3px, -0.02em);
}

.apps-product-brand {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: 8px;
  overflow: hidden;
}

.apps-product-brand img {
  display: block;
  max-width: min(100%, 380px);
  max-height: 148px;
  object-fit: contain;
}

.apps-product-dr .apps-product-brand {
  background: linear-gradient(135deg, #ff4a10 0%, #f57a21 58%, #ef4c16 100%);
}

.apps-dr-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #050505;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.45rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.apps-dr-lockup img {
  width: clamp(48px, 6vw, 72px);
  height: clamp(48px, 6vw, 72px);
  object-fit: contain;
}

.apps-dr-lockup span {
  transform: translateY(0.08em);
}

.apps-dr-lockup strong {
  font-weight: 400;
  transform: translateY(0.08em);
}

.apps-product-one-win .apps-product-brand {
  background: linear-gradient(135deg, #f4efe6 0%, #c9bca5 100%);
}

.apps-product-one-win .apps-product-brand img {
  max-height: 116px;
}

.apps-product-mood .apps-product-brand {
  background:
    radial-gradient(circle at 18% 78%, rgba(14, 236, 221, 0.42), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(255, 175, 15, 0.48), transparent 24%),
    radial-gradient(circle at 60% 0%, rgba(185, 54, 255, 0.56), transparent 34%),
    linear-gradient(135deg, #020b1e 0%, #07143d 56%, #150d31 100%);
}

.apps-product-mood .apps-product-brand img {
  max-height: 126px;
}

.apps-product-journal .apps-product-brand {
  background: linear-gradient(135deg, #f6f0e6 0%, #ded2c1 100%);
}

.apps-product-journal .apps-product-brand img {
  max-height: 126px;
}

.apps-product-going-now .apps-product-brand {
  padding: 0;
  border: 2px solid #238216;
  background: #fffef9;
}

.apps-product-going-now .apps-product-brand img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
}

.apps-development {
  margin-top: clamp(32px, 5vw, 54px);
}

.apps-development .section-heading p:not(.section-kicker) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.apps-development-grid {
  display: grid;
  gap: 16px;
}

.apps-development-card {
  min-height: 196px;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
}

.apps-development-logo {
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)), #f4f0e8;
  overflow: hidden;
}

.apps-development-logo img {
  display: block;
  width: 100%;
  max-width: 330px;
  max-height: 148px;
  object-fit: contain;
}

.apps-development-card > div:not(.apps-development-logo) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(16px, 2.4vw, 26px);
}

.apps-development-card-macros .apps-development-logo {
  background: #f7ecdd url("./assets/app-macros-card-bg.webp") center / cover no-repeat;
}

.apps-development-card-hydro .apps-development-logo {
  background: #07131d url("./assets/app-hydroquest-card-bg.webp") center / cover no-repeat;
}

.apps-development-card-lists .apps-development-logo {
  background: #c7d4bf;
}

.apps-development-card-gym .apps-development-logo {
  background: #edf0f2;
}

.apps-development-status {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apps-development-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.1;
}

.apps-development-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.apps-expect {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
  margin-top: clamp(40px, 6vw, 68px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.apps-expect h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  line-height: 1.08;
}

.apps-expect ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apps-expect li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.25;
}

.apps-cta {
  margin-top: clamp(40px, 6vw, 68px);
}

.error-page {
  max-width: 720px;
}

.error-page .contact-button {
  margin-top: 28px;
}

@media (max-width: 720px) {
  .mobile-break {
    display: block;
  }

  .logo {
    width: min(260px, 74vw);
  }

  .work {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 132px;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .header-logo {
    width: min(250px, 74vw);
  }

  .site-nav {
    justify-content: flex-start;
    padding-top: 0;
  }

  .nav-private-word {
    display: none;
  }

  .partnership-hero,
  .about-hero,
  .apps-hero {
    margin-top: clamp(42px, 12vw, 68px);
  }

  .home-page .partnership-hero,
  .about-hero,
  .apps-hero {
    margin-top: clamp(22px, 7vw, 38px);
  }

  .partnership-hero h1,
  .about-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .home-capability-grid,
  .home-why,
  .home-apps-teaser,
  .about-meet {
    grid-template-columns: 1fr;
  }

  .home-why {
    background:
      linear-gradient(180deg, rgba(7, 26, 51, 0.98) 0%, rgba(7, 26, 51, 0.94) 58%, rgba(7, 26, 51, 0.72) 100%),
      url("./assets/about-meet-background.webp") 68% bottom / cover no-repeat;
  }

  .home-image-panel {
    min-height: 320px;
    background:
      linear-gradient(180deg, rgba(4, 18, 37, 0.92) 0%, rgba(4, 18, 37, 0.68) 58%, rgba(4, 18, 37, 0.36) 100%),
      url("./assets/sports-hero.webp") 68% center / cover no-repeat;
  }

  .home-apps-teaser {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-apps-teaser .contact-button {
    width: 100%;
  }

  .home-capability-card {
    min-height: 0;
  }

  .site-footer nav {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-link-row {
    justify-content: flex-start;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .support-panel {
    padding: 18px;
  }

  .support-form,
  .support-help ul {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-card {
    min-height: 0;
  }

  .website-service-grid,
  .why-frankly,
  .why-list,
  .pricing-plan-grid,
  .pricing-addon-grid,
  .pricing-disclosure,
  .pricing-checkout-actions,
  .pricing-bundle {
    grid-template-columns: 1fr;
  }

  .why-frankly {
    gap: 18px;
  }

  .pricing-text-link {
    display: flex;
    margin: 14px 0 0;
  }

  .home-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .business-section {
    background:
      linear-gradient(180deg, rgba(4, 18, 37, 0.95) 0%, rgba(4, 18, 37, 0.88) 58%, rgba(4, 18, 37, 0.64) 100%),
      url("./assets/sports-hero.webp") 62% center / cover no-repeat;
  }

  .home-product-grid {
    grid-template-columns: 1fr;
  }

  .sports-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sports-hero {
    min-height: 720px;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(4, 18, 37, 0.96) 0%, rgba(4, 18, 37, 0.9) 48%, rgba(4, 18, 37, 0.5) 100%),
      url("./assets/sports-hero.webp") 63% center / cover no-repeat;
  }

  .sports-hero .sports-logo {
    width: min(260px, 72vw);
    margin-bottom: 0;
  }

  .sports-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    line-height: 1.06;
  }

  .sports-hero a[aria-label="Frankly home"] {
    width: fit-content;
  }

  .sports-service-grid,
  .sports-trust-grid {
    grid-template-columns: 1fr;
  }

  .sports-service-card,
  .sports-service-card-wide {
    min-height: 0;
  }

  .sports-service-card-wide {
    grid-column: auto;
  }

  .sports-meet-frank {
    grid-template-columns: 1fr;
  }

  .sports-headshot-wrap {
    max-width: 260px;
  }

  .sports-copy-stack {
    margin-top: 0;
  }

  .apps-philosophy,
  .apps-expect,
  .apps-development-grid,
  .apps-expect ul {
    grid-template-columns: 1fr;
  }

  .apps-philosophy p {
    margin-top: 0;
  }

  .apps-product-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apps-development-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .apps-product-copy {
    order: 2;
    padding: 16px 14px 10px;
  }

  .apps-development-card > div:not(.apps-development-logo) {
    padding: 16px 14px 10px;
  }

  .apps-product-brand {
    order: 1;
    min-height: 0;
    padding: 26px 18px;
  }

  .apps-development-logo {
    min-height: 142px;
    padding: 22px 18px;
  }

  .apps-product-brand img {
    max-height: 92px;
  }

  .apps-development-logo img {
    max-height: 108px;
  }

  .pricing-plan-card {
    min-height: 0;
  }

  .pricing-card-top p {
    min-height: 0;
  }

  .pricing-bundle-price {
    text-align: left;
  }

  .pricing-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (min-width: 721px) and (max-width: 1020px) {
  .sports-hero {
    min-height: 720px;
    background:
      linear-gradient(90deg, rgba(4, 18, 37, 0.94) 0%, rgba(4, 18, 37, 0.82) 48%, rgba(4, 18, 37, 0.28) 100%),
      url("./assets/sports-hero.webp") 72% center / cover no-repeat;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .website-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sports-service-grid,
  .sports-trust-grid,
  .home-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-addon-grid,
  .pricing-checkout-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
