/* Greek campaign page. Scoped to its own document; no production dependencies. */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/images/greece/fonts/inter-greek.woff2") format("woff2");
  unicode-range:
    U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/images/greece/fonts/inter-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
:root {
  color-scheme: light;
  --bg: #f9faf9;
  --surface: #fff;
  --soft: #f0f3f1;
  --ink: #162321;
  --muted: #586560;
  --line: #dce3df;
  --accent: #05d9df;
  --accent-hover: #08c7cd;
  --teal: #087b7c;
  --dark: #102a27;
  --radius: 26px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font:
    Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 1rem/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
h2 {
  font-size: clamp(2.25rem, 3.7vw, 3.6rem);
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}
p {
  text-wrap: pretty;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 6px;
}
::selection {
  background: #a4eeeb;
  color: #102a27;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1200px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.eyebrow {
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus {
  transform: none;
}
.greek-flag {
  width: 20px;
  height: 14px;
  position: relative;
  display: inline-block;
  background: repeating-linear-gradient(
    to bottom,
    #316daf 0,
    #316daf 1.56px,
    #fff 1.56px,
    #fff 3.12px
  );
  border-radius: 2px;
  box-shadow: 0 0 0 1px #8b9eab30;
  flex-shrink: 0;
}
.greek-flag:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background:
    linear-gradient(transparent 38%, #fff 38%, #fff 59%, transparent 59%),
    linear-gradient(
      90deg,
      transparent 38%,
      #fff 38%,
      #fff 59%,
      transparent 59%
    ),
    #316daf;
}
.origin-line {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(249, 250, 249, 0.88);
  border-bottom: 1px solid #1623210c;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 720;
  letter-spacing: -0.045em;
  min-height: 44px;
}
.brand img {
  flex-shrink: 0;
}
.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 550;
  padding-block: 13px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--teal);
}
.nav-actions {
  gap: 22px;
}
.language-link {
  font-size: 0.72rem;
  font-weight: 650;
  display: grid;
  place-items: center;
  min-width: 30px;
  min-height: 44px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 17px 27px;
  border-radius: 100px;
  background: var(--accent);
  color: #102a27;
  font-size: 0.92rem;
  font-weight: 650;
  min-height: 54px;
  transition:
    background 0.2s,
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.button:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px #0b3b3610;
}
.button:active {
  transform: scale(0.98);
}
.button-small {
  white-space: nowrap;
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.75rem;
  gap: 14px;
}
.button-small .icon {
  width: 16px;
  height: 16px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero {
  padding-top: 65px;
  overflow: hidden;
}
.hero-copy {
  text-align: center;
}
.hero .eyebrow {
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(3.35rem, 6.4vw, 6.25rem);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -0.057em;
}
.hero h1 > span {
  color: var(--teal);
}
.hero-description {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 650px;
  margin: 27px auto 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}
.store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-height: 72px;
  margin-top: 16px;
}
.store-badges a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  transition:
    opacity 0.2s,
    transform 0.25s var(--ease);
}
.store-badges a:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}
.store-badges .apple-badge {
  width: 144px;
  height: 48px;
  object-fit: contain;
}
.store-badges .google-badge {
  width: 186px;
  height: 72px;
  object-fit: contain;
  margin-inline: -9px;
}
.download-note {
  font-size: 0.72rem;
  color: var(--muted);
}
.download-note > span {
  padding-inline: 7px;
}
.store-rating {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.8;
}
.store-rating strong {
  color: var(--ink);
  font-size: 0.9rem;
  margin-left: 8px;
}
.rating-stars {
  color: var(--teal);
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.store-rating a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1.78fr 1fr;
  gap: 20px;
  align-items: center;
  width: min(1640px, calc(100% + 180px));
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 52px;
  padding: 10px 0;
}
.hero-photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  background: #314b42;
  aspect-ratio: 1.07;
}
.hero-photo-main {
  aspect-ratio: 1.82;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-left img {
  object-position: 48% center;
}
.hero-photo-right img {
  object-position: 55% center;
}
.hero-photo-left {
  transform: rotate(-3deg) translateY(12px);
}
.hero-photo-right {
  transform: rotate(3deg) translateY(12px);
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #05100cbb);
  z-index: 0;
  pointer-events: none;
}
.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 25px;
  right: 25px;
  bottom: 23px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 550;
}
.hero-photo-main figcaption {
  justify-content: space-between;
  gap: 20px;
}
.hero-photo-left figcaption {
  left: clamp(25px, calc(845px - 50vw), 140px);
}
.photo-label {
  display: flex;
  gap: 6px;
  align-items: center;
  border: 1px solid #ffffff55;
  padding: 6px 11px;
  border-radius: 30px;
  background: #071b1744;
  white-space: nowrap;
}
.photo-label .icon {
  width: 15px;
  height: 15px;
}
.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 35px 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.hero-foot strong {
  font-weight: 600;
  color: var(--ink);
}
.hero-foot a {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-foot a span {
  font-size: 1.15rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 19px;
}
.section-intro {
  max-width: 360px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}
.sports-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sports-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.79rem;
  font-weight: 550;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.sports-links a:hover,
.sports-links a[aria-current="true"] {
  background: #ddf6f1;
  border-color: #90c6bb;
  color: #154d45;
}
.sports-links .icon {
  width: 19px;
  height: 19px;
}
.more-sports {
  font-size: 0.72rem;
  color: var(--muted);
  padding-left: 4px;
}
.activity-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(56px, calc((100vw - 1200px) / 2));
  padding: 4px max(56px, calc((100vw - 1200px) / 2)) 20px;
  scrollbar-width: none;
}
.activity-rail::-webkit-scrollbar {
  display: none;
}
.activity-card {
  flex: 0 0 370px;
  min-width: 0;
  scroll-snap-align: start;
  scroll-margin-top: 130px;
}
.activity-image {
  height: 274px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--soft);
}
.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.activity-card:hover img {
  transform: scale(1.035);
}
.activity-tag {
  position: absolute;
  top: 17px;
  left: 17px;
  border-radius: 22px;
  padding: 5px 12px;
  background: #fff;
  color: #162321;
  font-weight: 550;
  font-size: 0.72rem;
}
.card-kicker {
  font-size: 0.71rem !important;
  color: var(--muted);
  margin-top: 22px;
  margin-bottom: 8px;
}
.activity-card h3 {
  font-size: 1.48rem;
  margin-bottom: 8px;
}
.activity-card > p:last-child {
  font-size: 0.86rem;
  color: var(--muted);
}
.rail-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 25px;
}
.rail-footer > p {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.8;
}
.rail-controls {
  display: flex;
  gap: 10px;
}
.round-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8eeeb;
  transition:
    background 0.2s,
    opacity 0.2s;
}
.round-button:hover {
  background: #d5e2dc;
}
.round-button:disabled {
  opacity: 0.4;
  cursor: default;
}
.round-button[data-direction="-1"] .icon {
  transform: rotate(180deg);
}
.how-section {
  background: var(--soft);
}
.center-heading {
  text-align: center;
}
.center-heading > p:last-child {
  margin-top: 22px;
  font-size: 1rem;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px;
  margin-top: 64px;
  margin-bottom: 58px;
}
.step-number {
  display: inline-block;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 19px;
}
.steps h3 {
  font-size: 1.23rem;
  margin-bottom: 15px;
}
.steps p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}
.app-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 55px 75px 40px;
  background: var(--dark);
  color: #fff;
  border-radius: 32px;
  overflow: hidden;
}
.showcase-logo {
  margin-bottom: 32px;
}
.showcase-copy > .eyebrow {
  color: #b3cbc3;
  font-size: 0.72rem;
}
.showcase-copy h3 {
  font-size: clamp(2rem, 3.1vw, 2.85rem);
  line-height: 1.17;
}
.showcase-copy > p:not(.eyebrow) {
  color: #b9cec6;
  font-size: 0.96rem;
  max-width: 340px;
  margin-top: 24px;
  line-height: 1.8;
}
.app-tabs {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-block: 30px 22px;
}
.app-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 11px;
  min-height: 44px;
  border: 1px solid #829b9166;
  background: transparent;
  color: #d9e5df;
  border-radius: 10px;
  font-size: 0.71rem;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.app-tabs button .icon {
  width: 16px;
  height: 16px;
}
.app-tabs button[aria-selected="true"] {
  background: #c8f4e7;
  color: #15392e;
  border-color: #c8f4e7;
}
.app-tabs button:hover {
  border-color: #c8f4e7;
}
.app-showcase :focus-visible {
  outline-color: #8de9d1;
}
.light-link {
  color: #a9edda;
  margin-top: 12px;
  font-size: 0.82rem;
}
.app-preview {
  justify-self: center;
  text-align: center;
  width: min(100%, 260px);
}
.app-preview > img {
  width: 100%;
  aspect-ratio: 1242/2688;
  object-fit: contain;
  border: 1px solid #68887b50;
  border-radius: 22px;
  background: #051812;
  box-shadow: 0 18px 40px #0002;
}
.app-preview figcaption {
  font-size: 0.65rem;
  color: #b9cec6;
  margin-top: 16px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  margin-top: 65px;
}
.feature-grid article {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.feature-icon {
  width: 35px;
  height: 35px;
  color: var(--teal);
  margin-bottom: 25px;
  stroke-width: 1.4;
}
.feature-grid h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.feature-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}
.feature-grid article > span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  margin-top: 28px;
}
.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #edf2e9;
}
.story-photo {
  position: relative;
  min-height: 650px;
}
.story-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: 49% center;
}
.story-photo:after {
  content: "";
  position: absolute;
  inset: 65% 0 0;
  background: linear-gradient(transparent, #102219a6);
}
.story-photo > span {
  position: absolute;
  bottom: 35px;
  left: 40px;
  z-index: 1;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 0.77rem;
}
.story-photo > span .icon {
  width: 17px;
  height: 17px;
}
.story-copy {
  padding: 80px clamp(32px, 5.2vw, 90px);
  align-self: center;
}
.story-copy .origin-line {
  justify-content: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.015em;
}
.story-copy h2 {
  font-size: clamp(2.2rem, 3.1vw, 3.15rem);
  line-height: 1.13;
  margin-bottom: 30px;
}
.story-copy h2 span {
  color: var(--teal);
}
.story-copy > p:not(.eyebrow) {
  color: #52614f;
  font-size: 0.94rem;
  line-height: 1.85;
  max-width: 440px;
  margin-top: 20px;
}
.story-copy > .story-signoff {
  font-weight: 650;
  color: #263d2c !important;
  font-size: 0.88rem !important;
  margin-top: 30px !important;
}
.local-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
}
.local-copy {
  align-self: center;
}
.local-copy p {
  font-size: 1.04rem;
  line-height: 1.9;
}
.local-copy .muted {
  font-size: 0.9rem;
  margin-top: 20px;
}
.local-copy .text-link {
  margin-top: 20px;
}
.trust-section {
  padding-block: 35px;
  border-block: 1px solid var(--line);
}
.trust-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  max-width: 100%;
  min-width: 0;
}
.trust-heading > .icon {
  width: 28px;
  height: 28px;
  color: var(--teal);
}
.trust-heading h2 {
  font-size: 1rem;
  letter-spacing: -0.025em;
}
.trust-layout ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.73rem;
  color: var(--muted);
}
.trust-layout li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.trust-layout li .icon {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.trust-layout .text-link {
  font-size: 0.71rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
}
.faq-layout h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 550;
  list-style: none;
  cursor: pointer;
  min-height: 80px;
  padding-block: 23px;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.faq-list summary > span:before,
.faq-list summary > span:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--muted);
  transition: transform 0.25s var(--ease);
}
.faq-list summary > span:after {
  transform: rotate(90deg);
}
.faq-list details[open] summary > span:after {
  transform: rotate(0);
}
.faq-list details > div {
  padding: 0 30px 26px 0;
}
.faq-list details p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.85;
}
.faq-list summary:hover {
  color: var(--teal);
}
.download-section {
  position: relative;
  background: #e6f4ec;
  isolation: isolate;
  overflow: hidden;
}
.download-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 90px;
}
.download-logo {
  margin: 0 auto 27px;
}
.download-inner .eyebrow {
  font-size: 0.75rem;
  color: #4b6257;
  margin-bottom: 22px;
}
.download-inner h2 {
  font-size: clamp(2.7rem, 5.5vw, 5.1rem);
  letter-spacing: -0.055em;
}
.download-inner h2 span {
  color: var(--teal);
}
.download-inner > p:not(.eyebrow):not(.download-note) {
  color: #4b6257;
  font-size: 1.07rem;
  line-height: 1.8;
  margin-top: 25px;
}
.download-inner .store-badges {
  margin-top: 25px;
}
.download-inner .download-note {
  margin-top: 10px;
}
.court-lines {
  position: absolute;
  inset: 38px -90px;
  border: 1px solid #145d3920;
  border-radius: 190px;
  z-index: 0;
  transform: rotate(-12deg);
  pointer-events: none;
}
.court-lines:before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: 50%;
  width: 1px;
  background: #145d3918;
}
.court-lines:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 390px;
  border: 1px solid #145d3920;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.court-lines > div {
  position: absolute;
  inset: 65px -1px;
  border: 1px solid #145d391c;
  border-radius: 160px;
}
.site-footer {
  padding-block: 40px 28px;
  background: var(--bg);
}
.breadcrumbs {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}
.breadcrumbs ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.breadcrumbs li + li::before {
  content: "›";
}
.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-top .brand {
  font-size: 1.2rem;
}
.footer-top > p {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-top > a:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  min-height: 44px;
}
.footer-top .icon {
  width: 16px;
  height: 16px;
  transform: rotate(-35deg);
}
.footer-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.66rem;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-origin {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.footer-origin .greek-flag {
  width: 17px;
  height: 12px;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.reveal-pending.is-visible {
  opacity: 1;
  transform: none;
}
@media (min-width: 1600px) {
  .hero-gallery {
    gap: 26px;
  }
  .hero {
    padding-top: 80px;
  }
  .hero-gallery {
    margin-top: 65px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .nav-links {
    gap: 18px;
  }
  .nav-links a {
    font-size: 0.72rem;
  }
  .nav-actions {
    gap: 14px;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .section {
    padding-block: 90px;
  }
  .hero-gallery {
    width: calc(100% + 230px);
  }
  .hero-photo figcaption {
    font-size: 0.72rem;
    left: 18px;
    right: 18px;
  }
  .hero-photo-main figcaption {
    gap: 10px;
  }
  .section-heading {
    gap: 35px;
  }
  .section-intro {
    max-width: 320px;
    font-size: 0.94rem;
  }
  .activity-rail {
    padding-inline: 36px;
    scroll-padding-inline: 36px;
  }
  .activity-card {
    flex-basis: 340px;
  }
  .activity-image {
    height: 250px;
  }
  .app-showcase {
    padding: 40px;
    gap: 35px;
  }
  .steps {
    gap: 30px;
  }
  .feature-grid {
    gap: 30px;
  }
  .story-copy {
    padding: 60px 35px;
  }
  .story-photo {
    min-height: 610px;
  }
  .trust-layout {
    justify-content: flex-start;
    gap: 20px 35px;
  }
  .trust-layout ul {
    flex-wrap: wrap;
  }
  .faq-layout {
    gap: 35px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-origin {
    margin-left: auto;
  }
}
@media (max-width: 800px) {
  .nav {
    height: 68px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 4.25rem;
  }
  .hero-description {
    max-width: 560px;
  }
  .hero-gallery {
    grid-template-columns: 0.7fr 1.6fr 0.7fr;
    width: calc(100% + 300px);
    gap: 15px;
  }
  .hero-photo-main {
    aspect-ratio: 1.5;
  }
  .hero-photo {
    aspect-ratio: 1;
  }
  .hero-photo-main {
    aspect-ratio: 1.65;
  }
  .hero-photo-main figcaption > span:last-child {
    font-size: 0.73rem;
  }
  .hero-photo-left figcaption,
  .hero-photo-right figcaption {
    display: none;
  }
  .section-heading {
    display: block;
  }
  .section-intro {
    max-width: 480px;
    margin-top: 22px;
  }
  .sports-links {
    gap: 8px;
  }
  .more-sports {
    width: 100%;
    padding-top: 5px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 27px;
    margin-top: 42px;
  }
  .steps > div {
    position: relative;
    padding-left: 48px;
  }
  .step-number {
    position: absolute;
    left: 0;
    top: 1px;
  }
  .steps h3 {
    margin-bottom: 10px;
  }
  .steps p {
    max-width: 550px;
  }
  .app-showcase {
    grid-template-columns: 1fr 1fr;
    padding: 35px;
    gap: 25px;
  }
  .app-preview {
    width: 230px;
  }
  .showcase-logo {
    width: 44px;
    height: 44px;
    margin-bottom: 23px;
  }
  .showcase-copy h3 {
    font-size: 2rem;
  }
  .showcase-copy > .eyebrow {
    font-size: 0.64rem;
  }
  .showcase-copy > p:not(.eyebrow) {
    font-size: 0.83rem;
  }
  .app-tabs {
    gap: 6px;
  }
  .app-tabs button {
    padding: 8px;
    font-size: 0.65rem;
  }
  .app-tabs button .icon {
    display: none;
  }
  .light-link {
    font-size: 0.72rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  .feature-grid article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 18px;
  }
  .feature-icon {
    grid-row: 1 / 4;
  }
  .feature-grid p,
  .feature-grid article > span {
    grid-column: 2;
  }
  .feature-grid h3 {
    margin-bottom: 12px;
  }
  .feature-grid article > span {
    margin-top: 15px;
  }
  .story-section {
    grid-template-columns: 1fr;
  }
  .story-photo {
    min-height: 0;
    aspect-ratio: 1.75;
  }
  .story-photo > img {
    object-position: center;
  }
  .story-copy {
    padding: 55px 36px 60px;
  }
  .story-copy h2 {
    font-size: 3rem;
  }
  .story-copy h2 br:nth-of-type(2) {
    display: initial;
  }
  .story-copy p:not(.eyebrow) {
    max-width: 590px;
  }
  .local-layout {
    gap: 30px;
  }
  .local-copy p {
    font-size: 0.95rem;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-layout h2 {
    font-size: 2.5rem;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .footer-top > p {
    order: 3;
    width: 100%;
  }
  .footer-bottom {
    gap: 12px;
  }
  .footer-bottom nav {
    order: 3;
    width: 100%;
  }
  .footer-origin {
    font-size: 0.64rem;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 70px;
  }
  .nav {
    gap: 10px;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding-block: 10px;
  }
  .brand {
    font-size: 1.24rem;
    gap: 8px;
  }
  .brand img {
    width: 31px;
    height: 31px;
  }
  .nav-actions {
    gap: 8px;
    margin-left: auto;
  }
  .button-small {
    font-size: 0.69rem;
    min-height: 44px;
    padding: 10px 14px;
    gap: 8px;
  }
  .language-link {
    font-size: 0.65rem;
    min-width: 30px;
  }
  .hero {
    padding-top: 43px;
  }
  .hero .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.025em;
    gap: 7px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 9.3vw, 3.2rem);
    line-height: 1.09;
    letter-spacing: -0.055em;
  }
  .hero-description {
    font-size: 0.96rem;
    max-width: 340px;
    margin-top: 22px;
    line-height: 1.75;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    gap: 12px;
    margin-top: 25px;
    flex-direction: column;
  }
  .hero-actions .button {
    min-height: 52px;
    padding: 15px 23px;
    font-size: 0.83rem;
  }
  .hero-actions .text-link {
    font-size: 0.79rem;
    min-height: 38px;
  }
  .hero .store-badges {
    margin-top: 8px;
  }
  .store-badges {
    gap: 2px;
  }
  .store-badges .apple-badge {
    width: 132px;
    height: 44px;
  }
  .store-badges .google-badge {
    width: 170px;
    height: 66px;
    margin-inline: -7px;
  }
  .download-note {
    font-size: 0.65rem;
  }
  .hero-gallery {
    margin-top: 31px;
    grid-template-columns: 1fr 7fr 1fr;
    width: calc(100% + 76px);
    gap: 12px;
  }
  .hero-photo {
    border-radius: 16px;
    aspect-ratio: 0.2;
  }
  .hero-photo-main {
    aspect-ratio: 1.32;
  }
  .hero-photo-main img {
    object-position: 60% center;
  }
  .hero-photo-main figcaption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .hero-photo-main figcaption > span:last-child {
    font-size: 0.69rem;
  }
  .photo-label {
    padding: 4px 8px;
    font-size: 0.65rem;
  }
  .photo-label .icon {
    width: 13px;
    height: 13px;
  }
  .hero-foot {
    font-size: 0.66rem;
    padding-top: 19px;
  }
  .hero-foot a {
    gap: 9px;
  }
  .eyebrow {
    font-size: 0.66rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 2.18rem;
    line-height: 1.15;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-intro {
    font-size: 0.9rem;
    margin-top: 20px;
  }
  .sports-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-inline: 20px;
    padding-block: 4px 12px;
    scrollbar-width: none;
    margin-bottom: 19px;
  }
  .sports-links a {
    flex-shrink: 0;
    font-size: 0.72rem;
    padding: 8px 13px;
    min-height: 44px;
  }
  .more-sports {
    width: auto;
    flex-shrink: 0;
    font-size: 0.68rem;
    padding: 0 20px 0 6px;
  }
  .activity-rail {
    gap: 17px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
  .activity-card {
    flex-basis: calc(100vw - 65px);
  }
  .activity-image {
    height: 242px;
    border-radius: 18px;
  }
  .activity-card h3 {
    font-size: 1.32rem;
  }
  .activity-card > p:last-child {
    font-size: 0.81rem;
  }
  .card-kicker {
    font-size: 0.66rem !important;
    margin-top: 18px;
  }
  .rail-footer {
    margin-top: 18px;
    gap: 15px;
    align-items: flex-end;
  }
  .rail-footer > p {
    font-size: 0.62rem;
    max-width: 230px;
  }
  .round-button {
    width: 44px;
    height: 44px;
  }
  .rail-controls {
    gap: 7px;
  }
  .center-heading > p:last-child {
    font-size: 0.91rem;
    margin-top: 20px;
  }
  .steps {
    margin-block: 38px 35px;
    gap: 27px;
  }
  .steps h3 {
    font-size: 1.12rem;
  }
  .steps p {
    font-size: 0.86rem;
  }
  .step-number {
    font-size: 0.8rem;
  }
  .app-showcase {
    grid-template-columns: 1fr;
    padding: 30px 25px;
    gap: 35px;
    border-radius: 24px;
  }
  .showcase-copy h3 {
    font-size: 2.1rem;
  }
  .showcase-copy > p:not(.eyebrow) {
    font-size: 0.91rem;
    max-width: none;
    margin-top: 20px;
  }
  .showcase-copy > .eyebrow {
    margin-bottom: 18px;
  }
  .showcase-logo {
    margin-bottom: 24px;
  }
  .app-tabs {
    margin-block: 24px 12px;
    gap: 6px;
  }
  .app-tabs button {
    padding: 9px 10px;
    font-size: 0.68rem;
  }
  .app-tabs button .icon {
    display: block;
    width: 15px;
    height: 15px;
  }
  .light-link {
    font-size: 0.77rem;
  }
  .app-preview {
    width: 230px;
  }
  .app-preview figcaption {
    font-size: 0.61rem;
  }
  .feature-grid {
    margin-top: 35px;
    gap: 28px;
  }
  .feature-grid article {
    grid-template-columns: 34px 1fr;
    column-gap: 16px;
    padding-top: 25px;
  }
  .feature-icon {
    width: 29px;
    height: 29px;
    margin-bottom: 0;
  }
  .feature-grid h3 {
    font-size: 1.21rem;
    line-height: 1.2;
  }
  .feature-grid p {
    font-size: 0.88rem;
  }
  .feature-grid article > span {
    font-size: 0.67rem;
  }
  .story-photo {
    aspect-ratio: 1.3;
  }
  .story-photo > span {
    font-size: 0.69rem;
    bottom: 22px;
    left: 23px;
  }
  .story-copy {
    padding: 45px 24px 50px;
  }
  .story-copy .origin-line {
    font-size: 0.62rem;
  }
  .story-copy h2 {
    font-size: clamp(1.8rem, 8.8vw, 2.4rem);
    margin-bottom: 24px;
  }
  .story-copy > p:not(.eyebrow) {
    font-size: 0.91rem;
  }
  .story-copy > .story-signoff {
    font-size: 0.85rem !important;
  }
  .local-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .local-copy p {
    font-size: 0.96rem;
  }
  .local-copy .muted {
    font-size: 0.86rem;
  }
  .local-copy .text-link {
    font-size: 0.83rem;
  }
  .trust-section {
    padding-block: 30px;
  }
  .trust-layout {
    gap: 18px;
  }
  .trust-heading h2 {
    font-size: 1rem;
  }
  .trust-layout ul {
    flex-direction: column;
    gap: 11px;
    width: 100%;
    font-size: 0.79rem;
    padding-left: 41px;
  }
  .trust-layout .text-link {
    margin-left: 41px;
    font-size: 0.74rem;
  }
  .faq-layout h2 {
    font-size: 2.15rem;
  }
  .faq-list summary {
    font-size: 0.88rem;
    min-height: 77px;
    gap: 18px;
  }
  .faq-list details p {
    font-size: 0.85rem;
  }
  .download-inner {
    padding-block: 65px;
  }
  .download-logo {
    width: 61px;
    height: 61px;
    margin-bottom: 25px;
  }
  .download-inner .eyebrow {
    font-size: 0.66rem;
  }
  .download-inner h2 {
    font-size: 2.9rem;
    line-height: 1.08;
  }
  .download-inner > p:not(.eyebrow):not(.download-note) {
    font-size: 0.97rem;
  }
  .download-inner .download-note {
    font-size: 0.62rem;
    max-width: 300px;
    margin-inline: auto;
  }
  .court-lines {
    inset: 28px -70px;
    transform: rotate(-20deg);
  }
  .court-lines:after {
    width: 240px;
    height: 240px;
  }
  .site-footer {
    padding-block: 30px 20px;
  }
  .footer-top {
    padding-bottom: 22px;
  }
  .footer-top > p {
    font-size: 0.71rem;
    margin-top: 10px;
  }
  .footer-top > a:last-child {
    font-size: 0.73rem;
  }
  .footer-bottom {
    font-size: 0.62rem;
    gap: 5px 16px;
  }
  .footer-origin {
    font-size: 0.59rem;
  }
  .footer-bottom nav {
    gap: 0 18px;
    margin-top: 8px;
  }
  .footer-bottom a {
    min-height: 42px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #101916;
    --surface: #19251f;
    --soft: #16221c;
    --ink: #eef4f0;
    --muted: #a7b6ac;
    --line: #334239;
    --teal: #91dcc9;
    --dark: #08251e;
  }
  .site-header {
    background: #101916e8;
    border-color: #ffffff0c;
  }
  .sports-links a:hover,
  .sports-links a[aria-current="true"] {
    background: #284b3a;
    border-color: #6a9b83;
    color: #d6f5e8;
  }
  .round-button {
    background: #2d4034;
  }
  .round-button:hover {
    background: #415b4a;
  }
  .story-section {
    background: #1c2b21;
  }
  .story-copy > p:not(.eyebrow) {
    color: #b7c7b6;
  }
  .story-copy > .story-signoff {
    color: #d5e9d3 !important;
  }
  .download-section {
    background: #1b3628;
  }
  .download-inner h2 {
    color: #eef4f0;
  }
  .download-inner .eyebrow,
  .download-inner > p:not(.eyebrow):not(.download-note) {
    color: #bfd4c4;
  }
  .court-lines,
  .court-lines > div,
  .court-lines:after {
    border-color: #a1d4b526;
  }
  .court-lines:before {
    background: #a1d4b526;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
  .button:hover,
  .store-badges a:hover,
  .activity-card:hover img {
    transform: none;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (prefers-contrast: more) {
  :root {
    --muted: var(--ink);
  }
  .site-header {
    background: var(--bg);
  }
  .sports-links a,
  .app-tabs button {
    border-width: 2px;
  }
  .hero-photo figcaption {
    background: #071b17;
    padding: 8px;
    border-radius: 8px;
  }
  .story-photo > span {
    background: #071b17;
    padding: 8px;
    border-radius: 8px;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .sports-links,
  .rail-controls,
  .app-tabs,
  .court-lines {
    display: none !important;
  }
  .section {
    padding-block: 32px;
  }
  .wrap {
    width: 94%;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
  .activity-rail {
    overflow: visible;
    flex-wrap: wrap;
    padding: 0 3%;
  }
  .activity-card {
    flex-basis: 30%;
  }
  .activity-image {
    height: 140px;
  }
  .story-section {
    break-inside: avoid;
  }
  .app-showcase {
    break-inside: avoid;
  }
  .site-footer {
    padding: 20px 0;
  }
}

@media (max-width: 350px) {
  .nav .button-small .icon {
    display: none;
  }
  .nav .button-small {
    padding-inline: 13px;
  }
  .nav-actions {
    gap: 5px;
  }
}
