:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #08253a;
  background: #edf8fa;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 168, 224, 0.2), transparent 35%),
    linear-gradient(145deg, #f8fcfd 0%, #e6f5f6 100%);
}

.ionafish-shell {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.ionafish-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 64px);
  border: 1px solid rgba(0, 79, 90, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(4, 42, 59, 0.14);
}

.ionafish-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #004f5a;
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ionafish-brand img {
  border-radius: 12px;
}

.ionafish-kicker {
  margin: 34px 0 8px;
  color: #007183;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #08253a;
  font-size: clamp(38px, 8vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.ionafish-summary {
  max-width: 620px;
  margin: 24px 0 0;
  color: #385568;
  font-size: clamp(17px, 3vw, 20px);
  line-height: 1.65;
}

.ionafish-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.ionafish-primary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 10px;
  color: #fff;
  background: #004f5a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
}

.ionafish-primary-action:hover,
.ionafish-primary-action:focus-visible {
  background: color-mix(in oklab, #004f5a 72%, white 28%);
}

.ionafish-action-note {
  color: #617887;
  font-size: 14px;
}

.ionafish-footer {
  min-height: 64px;
  padding: 20px;
  color: #617887;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 560px) {
  .ionafish-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}
