
@font-face {
  font-family: "Visa Dialect";
  src: url("assets/fonts/VisaDialect-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Visa Dialect";
  src: url("assets/fonts/VisaDialect-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Visa Dialect";
  src: url("assets/fonts/VisaDialect-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Visa Dialect";
  src: url("assets/fonts/VisaDialect-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Scratchy";
  src: url("assets/fonts/Scratchy.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

:root {
  --bg: #071444;
  --bg-deep: #040d30;
  --visa-blue: #1434cb;
  --visa-blue-strong: #2255ff;
  --visa-blue-soft: #dfe7ff;
  --gold: #fcc015;
  --gold-soft: #ffe39a;
  --ink: #12204f;
  --text: #f5f7ff;
  --muted: #7381b3;
  --muted-light: rgba(235, 240, 255, 0.78);
  --line: rgba(255, 255, 255, 0.10);
  --surface: #ffffff;
  --surface-soft: #f5f8ff;
  --shadow: 0 30px 80px rgba(3, 10, 45, 0.30);
  --shadow-soft: 0 20px 50px rgba(20, 52, 203, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Visa Dialect", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(20, 52, 203, 0.12), transparent 22%),
    linear-gradient(180deg, #f9fbff 0%, #f3f7ff 48%, #edf2ff 100%);
  line-height: 1.65;
}

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

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 36px 0 72px;
  color: var(--text);
  background: var(--bg-deep);
}

.hero-media,
.hero-overlay,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url('assets/hero-bg.svg') center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 48, 0.88) 0%, rgba(4, 13, 48, 0.70) 42%, rgba(4, 13, 48, 0.45) 100%),
    radial-gradient(circle at 78% 18%, rgba(243, 197, 93, 0.22), transparent 22%),
    radial-gradient(circle at 18% 80%, rgba(20, 52, 203, 0.55), transparent 32%);
}

.hero-noise {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: end;
}

.brand-logo {
  width: 118px;
  margin-bottom: 24px;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.25));
}

.eyebrow,
.section-kicker,
.meta-label,
.countdown-label,
.panel-topline {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow,
.section-kicker,
.countdown-label,
.panel-topline {
  color: var(--gold);
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.02;
}

.hero h1 {
  font-family: "Visa Dialect", Inter, sans-serif;
  font-size: clamp(3.3rem, 7vw, 6.2rem);
  letter-spacing: -0.03em;
}

.tagline {
  margin: 18px 0 16px;
  max-width: 780px;
  font-family: "Visa Dialect", Inter, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  color: #ffffff;
}

.lead {
  max-width: 740px;
  color: var(--muted-light);
  font-size: 1.05rem;
}

.event-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 30px;
}

.meta-card,
.hero-panel,
.feature-card,
.speaker-card,
.agenda-shell,
.bonus-card,
.final-box {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.meta-card {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.meta-card strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
}

.meta-label {
  color: rgba(255, 255, 255, 0.65);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.button-primary {
  color: #04103d;
  background: linear-gradient(135deg, #f7d277 0%, #f3c55d 100%);
  box-shadow: 0 18px 38px rgba(243, 197, 93, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-outline:hover,
.button-outline:focus-visible {
  transform: translateY(-2px);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #04103d;
  border-color: rgba(243, 197, 93, 0.88);
  background: linear-gradient(135deg, #f7d277 0%, #f3c55d 100%);
  box-shadow: 0 18px 38px rgba(243, 197, 93, 0.28);
}

.button-large {
  min-height: 60px;
  padding: 0 34px;
}

.button-outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.cta-note {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.hero-panel {
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  backdrop-filter: blur(18px);
}

.panel-topline {
  margin-bottom: 18px;
}

.countdown-card {
  padding: 0;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 20px;
}

.countdown-unit {
  padding: 18px 10px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(20, 52, 203, 0.12));
  border: 1px solid rgba(255,255,255,0.09);
}

.countdown-unit span {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
}

.countdown-unit small,
.countdown-text,
.panel-note p {
  color: var(--muted-light);
}

.panel-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
}

.panel-line {
  display: block;
  width: 2px;
  height: 88px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), rgba(243, 197, 93, 0));
}

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

.section-heading.centered,
.section-cta.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section h2 {
  font-family: "Visa Dialect", Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-top: 8px;
  color: #0d1b54;
}

.section-heading p,
.feature-card p,
.agenda-item p,
.bonus-card p,
.intro-card p {
  color: #5b6998;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: end;
}

.intro-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 52, 203, 0.06), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(20, 52, 203, 0.12);
  box-shadow: var(--shadow-soft);
}

.feature-grid,
.speakers-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.feature-card--minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.feature-card--minimal h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.2;
  font-weight: 600;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--visa-blue);
  background: linear-gradient(180deg, rgba(243, 197, 93, 0.28), rgba(20, 52, 203, 0.08));
}

.feature-card h3,
.speaker-card h3,
.agenda-item h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.speakers-section {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(243, 197, 93, 0.12), transparent 18%),
    linear-gradient(180deg, #081445 0%, #0d2190 100%);
}

.light-text h2,
.light-text p {
  color: #ffffff;
}

.light-text p {
  color: rgba(255,255,255,0.72);
}

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

.speaker-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.speaker-card h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #ffffff;
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1.14;
  margin-bottom: 14px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: center;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  background:
    radial-gradient(circle at top, rgba(243, 197, 93, 0.36), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.section-cta {
  margin-top: 30px;
}

.agenda-shell {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 52, 203, 0.10);
}

.agenda-list {
  display: grid;
  gap: 14px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 52, 203, 0.10);
}

.agenda-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.agenda-time {
  width: 88px;
  min-width: 88px;
  height: 88px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  font-weight: 800;
  color: var(--visa-blue);
  background: linear-gradient(180deg, rgba(20, 52, 203, 0.08), rgba(243, 197, 93, 0.16));
}

.bonus-card,
.final-box {
  border-radius: var(--radius-xl);
}

.bonus-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px;
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow-soft);
  border-color: rgba(20, 52, 203, 0.10);
}

.bonus-badge {
  width: 88px;
  height: 88px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  font-size: 2.15rem;
  background: linear-gradient(180deg, rgba(243, 197, 93, 0.38), rgba(20, 52, 203, 0.10));
}



.final-box {
  padding: 54px 28px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(243, 197, 93, 0.20), transparent 24%),
    linear-gradient(180deg, #071444 0%, #102a9e 100%);
}

.final-box h2,
.final-box p {
  color: #ffffff;
}

.final-box p {
  max-width: 720px;
  margin: 14px auto 0;
  color: rgba(255,255,255,0.78);
}

.final-box .button {
  margin-top: 34px;
}

.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.delay-1 {
  transition-delay: 0.1s;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .fade-up,
  .fade-up.delay-1,
  .button {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-media {
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .intro-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .event-meta,
  .countdown,
  .speakers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .event-meta,
  .countdown,
  .feature-grid,
  .speakers-grid,
  .bonus-card {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .button-large {
    width: 100%;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .agenda-time {
    margin: 0 auto;
  }

  .hero-panel,
  .agenda-shell,
  .feature-card,
  .bonus-card,
  .final-box {
    padding: 24px;
  }
}


.brand-logo--hero {
  width: min(360px, 78vw);
  margin-bottom: 20px;
}

.shape {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

.shape-star-hero {
  right: 6%;
  top: 10%;
  width: 120px;
  opacity: 0.7;
  z-index: 0;
}

.shape-flower-hero {
  right: 11%;
  bottom: 16%;
  width: 170px;
  opacity: 0.22;
  z-index: 0;
}

.shape-section-star {
  width: 74px;
  margin: 0 auto 12px;
  opacity: 0.95;
}

.scratch-quote {
  position: relative;
  display: inline-block;
  margin: 18px 0 0;
  line-height: 1.05;
}

.scratch-quote span {
  position: relative;
  z-index: 1;
  font-family: "Scratchy", cursive;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  color: #ffffff;
}

.scratch-quote--hero {
  margin: 8px 0 18px;
}

.scratch-quote--hero span {
  color: var(--gold-soft);
}

.scratch-quote--center {
  display: table;
  margin: 18px auto 0;
}

.scratch-quote--center span {
  color: var(--visa-blue);
}

.scratch-underline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 112%;
  max-width: none;
  opacity: 0.95;
}

.hero h1,
.section h2 {
  font-weight: 700;
}

.tagline {
  font-weight: 500;
}

.button-primary {
  background: linear-gradient(135deg, #ffd35b 0%, #fcc015 100%);
  box-shadow: 0 18px 38px rgba(252, 192, 21, 0.28);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(252, 192, 21, 0.88);
  background: linear-gradient(135deg, #ffd35b 0%, #fcc015 100%);
  box-shadow: 0 18px 38px rgba(252, 192, 21, 0.28);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 13, 48, 0.88) 0%, rgba(4, 13, 48, 0.70) 42%, rgba(4, 13, 48, 0.45) 100%),
    radial-gradient(circle at 78% 18%, rgba(252, 192, 21, 0.24), transparent 22%),
    radial-gradient(circle at 18% 80%, rgba(20, 52, 203, 0.55), transparent 32%);
}

@media (max-width: 780px) {
  .shape-star-hero {
    width: 84px;
    top: 8%;
    right: 4%;
  }

  .shape-flower-hero {
    width: 110px;
    right: 4%;
    bottom: 11%;
  }

  .scratch-quote span {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
  }
}


/* polish pass */
.hero__content {
  max-width: 980px;
}
.hero__lead {
  max-width: 760px;
}
.section-heading p {
  max-width: 640px;
  margin-inline: auto;
}
.card,
.speaker-card,
.agenda-item,
.gift__inner,
.countdown-card,

.speaker-grid {
  align-items: stretch;
}
.speaker-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.speaker-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252, 192, 21, 0.34);
  box-shadow: 0 26px 50px rgba(2, 14, 39, 0.32);
}
.speaker-card h3 {
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}



.agenda-content h3 {
  letter-spacing: -0.01em;
}
.gift__copy {
  max-width: 720px;
}
@media (min-width: 1200px) {
  .speaker-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 1100px) {
  .speaker-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 860px) {
  
}
@media (max-width: 640px) {
  
}


/* restored final container styles */
.final-cta {
  padding-top: 28px;
  padding-bottom: 110px;
}
/* Mobile event-meta cards */
@media (max-width: 680px) {
  .event-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .meta-card {
    padding: 12px 10px;
    text-align: center;
  }

  .meta-label {
    font-size: 0.7rem;
  }

  .meta-card strong {
    font-size: 0.9rem;
  }
}

/* Mobile countdown */

@media (max-width: 680px) {
  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .countdown-item {
    padding: 10px 6px;
    text-align: center;
  }

  .countdown-value {
    font-size: 1.2rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }
}

/* Mobile regjistrimi falas */
@media (max-width: 680px) {
  .cta-note {
    text-align: center;
    margin-top: 10px;
  }
}
/* Programi centered mobile */
@media (max-width: 680px) {
  .agenda-item {
    text-align: center;
  }

  .agenda-content {
    text-align: center;
  }

  .agenda-content h3 {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .section-heading {
    text-align: center;
  }

  .section-heading .section-kicker {
    display: block;
    text-align: center;
  }

  .section-heading h2 {
    text-align: center;
  }
}

/* speakers mobile */

@media (max-width: 680px) {
  .speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .speaker-card {
    padding: 12px;
  }

  .speaker-photo {
    height: 140px;
    border-radius: 16px;
  }

  .speaker-card h3 {
    font-size: 0.85rem;
    line-height: 1.2;
    margin-top: 8px;
  }
}

/* dhurata mobile */
@media (max-width: 680px) {
  .bonus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .bonus-badge {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
  }

  .bonus-card > div {
    text-align: center;
  }

  .bonus-card h2,
  .bonus-card .section-kicker {
    text-align: center;
  }
}

.hero-panel {
  align-self: center;
}

/* VISA x BKT Logo header */
.hero-partner-logo {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  margin-top: 40px;
}

/* desktop */
@media (min-width: 681px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "copy panel"
      "logo panel";
    gap: 48px;
    align-items: start;
  }

  .hero-copy {
    grid-area: copy;
  }

  .hero-panel {
    grid-area: panel;
  }

  .hero-partner-logo {
    grid-area: logo;
    margin-top: 0;
    align-self: start;
  }
}

/* mobile */
@media (max-width: 680px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    order: 1;
  }

  .hero-panel {
    order: 2;
  }

  .hero-partner-logo {
    order: 3;
    width: 180px;
    margin: 20px auto 0;
  }
}

/* Footer logo */
.footer-partner-logo {
  display: block;
  margin: 40px auto 0;
  width: 320px;
  max-width: 70%;
  height: auto;
  opacity: 0.9;
}

@media (max-width: 680px) {
  .footer-partner-logo {
    width: 180px;
    margin-top: 28px;
  }
}