/* TipNoTip static site stylesheet
   Hand-written CSS, no framework, no build step. The rules below intentionally
   support the reconstructed HTML classes while keeping the file readable. */


/* Official brand font
   Place the Unageo font files in assets/fonts using the filenames below.
   The site will use them automatically; until then it falls back to Manrope/Inter. */
@font-face { font-family: "Unageo"; src: url("/assets/fonts/Unageo-Regular.woff2") format("woff2"), url("/assets/fonts/Unageo-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Unageo"; src: url("/assets/fonts/Unageo-Medium.woff2") format("woff2"), url("/assets/fonts/Unageo-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Unageo"; src: url("/assets/fonts/Unageo-SemiBold.woff2") format("woff2"), url("/assets/fonts/Unageo-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Unageo"; src: url("/assets/fonts/Unageo-Bold.woff2") format("woff2"), url("/assets/fonts/Unageo-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Unageo"; src: url("/assets/fonts/Unageo-Italic.woff2") format("woff2"), url("/assets/fonts/Unageo-Italic.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --radius: .5rem;
  --paper: oklch(99.2% .002 95);
  --ink: oklch(14% 0 0);
  --background: var(--paper);
  --foreground: var(--ink);
  --card: oklch(100% 0 0);
  --secondary: oklch(96% .003 95);
  --muted: oklch(96.5% .003 95);
  --muted-foreground: oklch(45% .005 95);
  --hairline: oklch(86% .003 95);
  --border: oklch(90% .003 95);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: "Unageo", "Manrope", "Inter Tight", ui-sans-serif, system-ui, sans-serif; font-feature-settings: "ss01", "cv11"; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: transparent; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4, .font-display, .display { font-family: "Unageo", "Manrope", ui-sans-serif, system-ui, sans-serif; letter-spacing: -.02em; }
::selection { background: var(--foreground); color: var(--background); }

/* Design primitives */
.eyebrow { font-family: "Unageo", "Inter Tight", ui-sans-serif, system-ui, sans-serif; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-foreground); font-size: .75rem; font-weight: 500; }
.display { letter-spacing: -.035em; font-weight: 600; line-height: .95; }
.brand-rule { width: 100%; height: 1px; background: var(--hairline); }
.hairline { border-color: var(--hairline); }
.lang-switcher { position: relative; }

/* Language dropdown */
[data-lang-menu][hidden] { display: none !important; }
.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  z-index: 60;
  width: 10.25rem;
  border: 1px solid var(--border);
  border-radius: .35rem;
  background: #fff;
  padding: .35rem;
  box-shadow: 0 14px 35px rgba(0,0,0,.10);
}
.lang-menu a { position: relative; display: block; border-radius: .25rem; padding: .46rem 1.75rem .46rem .65rem; font-size: .75rem; line-height: 1.2; color: var(--foreground); }
.lang-menu a:hover { background: var(--secondary); }
.lang-menu a:first-child::after { content: "✓"; position: absolute; right: .65rem; top: 50%; transform: translateY(-50%); font-size: .75rem; }

/* Layout helpers used by the reconstructed pages */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.pointer-events-none { pointer-events: none; }
.overflow-hidden { overflow: hidden; }
.select-none { user-select: none; }
.shrink-0 { flex-shrink: 0; }
.flex-1 { flex: 1; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-baseline { align-items: baseline; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.mx-auto { margin-left: auto; margin-right: auto; }
.top-0 { top: 0; }
.inset-0 { inset: 0; }
.bottom-4 { bottom: 1rem; }
.left-4 { left: 1rem; }
.right-4 { right: 1rem; }
.z-40 { z-index: 40; }

/* Sizing */
.h-3 { height: .75rem; } .h-3\.5 { height: .875rem; } .h-4 { height: 1rem; } .h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-8 { height: 2rem; } .h-10 { height: 2.5rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; } .h-px { height: 1px; }
.w-3 { width: .75rem; } .w-3\.5 { width: .875rem; } .w-4 { width: 1rem; } .w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-8 { width: 2rem; } .w-10 { width: 2.5rem; } .w-16 { width: 4rem; } .w-20 { width: 5rem; } .w-full { width: 100%; } .w-auto { width: auto; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.max-w-xs { max-width: 20rem; } .max-w-sm { max-width: 24rem; } .max-w-md { max-width: 28rem; } .max-w-xl { max-width: 36rem; } .max-w-2xl { max-width: 42rem; } .max-w-3xl { max-width: 48rem; } .max-w-4xl { max-width: 56rem; } .max-w-5xl { max-width: 64rem; } .max-w-6xl { max-width: 72rem; } .max-w-7xl { max-width: 80rem; } .max-w-\[14rem\] { max-width: 14rem; }

/* Spacing */
.gap-1\.5 { gap: .375rem; } .gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; } .gap-16 { gap: 4rem; } .gap-px { gap: 1px; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: .5rem; padding-right: .5rem; } .px-3 { padding-left: .75rem; padding-right: .75rem; } .px-4 { padding-left: 1rem; padding-right: 1rem; } .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; } .py-3 { padding-top: .75rem; padding-bottom: .75rem; } .py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; } .py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; } .py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; } .py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; } .py-16 { padding-top: 4rem; padding-bottom: 4rem; } .py-20 { padding-top: 5rem; padding-bottom: 5rem; } .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; } .pt-10 { padding-top: 2.5rem; } .pt-16 { padding-top: 4rem; }
.pb-1 { padding-bottom: .25rem; } .pb-4 { padding-bottom: 1rem; } .pb-24 { padding-bottom: 6rem; }
.mt-0\.5 { margin-top: .125rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; } .mt-20 { margin-top: 5rem; }
.mb-4 { margin-bottom: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Borders, radii and color */
.border { border: 1px solid; } .border-t { border-top: 1px solid; } .border-b { border-bottom: 1px solid; } .border-y { border-top: 1px solid; border-bottom: 1px solid; } .border-b-2 { border-bottom: 2px solid; }
.rounded-full { border-radius: 999rem; } .rounded-xl { border-radius: .75rem; } .rounded-2xl { border-radius: 1rem; }
.bg-background, .bg-background\/85 { background: color-mix(in oklab, var(--background) 85%, transparent); } .bg-background { background: var(--background); }
.bg-background\/80 { background: color-mix(in oklab, var(--background) 80%, transparent); }
.bg-card { background: var(--card); } .bg-foreground { background: var(--foreground); } .bg-secondary\/40 { background: color-mix(in oklab, var(--secondary) 40%, transparent); } .bg-secondary\/50 { background: color-mix(in oklab, var(--secondary) 50%, transparent); } .bg-border { background: var(--border); }
.text-foreground { color: var(--foreground); } .text-background { color: var(--background); } .text-background\/60 { color: color-mix(in oklab, var(--background) 60%, transparent); } .text-background\/70 { color: color-mix(in oklab, var(--background) 70%, transparent); } .text-background\/80 { color: color-mix(in oklab, var(--background) 80%, transparent); } .text-muted-foreground { color: var(--muted-foreground); }
.border-hairline { border-color: var(--hairline); } .border-foreground { border-color: var(--foreground); } .border-foreground\/15 { border-color: color-mix(in oklab, var(--foreground) 15%, transparent); } .border-foreground\/20 { border-color: color-mix(in oklab, var(--foreground) 20%, transparent); } .border-background\/20 { border-color: color-mix(in oklab, var(--background) 20%, transparent); } .border-background\/30 { border-color: color-mix(in oklab, var(--background) 30%, transparent); }

/* Type */
.text-\[9px\] { font-size: 9px; } .text-\[10px\] { font-size: 10px; } .text-xs { font-size: .75rem; line-height: 1.35; } .text-sm { font-size: .875rem; line-height: 1.45; } .text-lg { font-size: 1.125rem; line-height: 1.55; } .text-xl { font-size: 1.25rem; line-height: 1.4; } .text-2xl { font-size: 1.5rem; line-height: 1.3; } .text-3xl { font-size: 1.875rem; line-height: 1.2; } .text-4xl { font-size: 2.25rem; line-height: 1.1; } .text-5xl { font-size: 3rem; line-height: 1; }
.text-\[clamp\(2\.75rem\,7vw\,5\.5rem\)\] { font-size: clamp(2.75rem, 7vw, 5.5rem); }
.text-\[clamp\(2rem\,5vw\,4\.25rem\)\] { font-size: clamp(2rem, 5vw, 4.25rem); }
.text-\[clamp\(3\.5rem\,11vw\,10rem\)\] { font-size: clamp(3.5rem, 11vw, 10rem); }
.text-\[clamp\(3rem\,9vw\,8rem\)\] { font-size: clamp(3rem, 9vw, 8rem); }
.font-light { font-weight: 300; } .font-medium { font-weight: 500; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; } .font-mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
.leading-tight { line-height: 1.25; } .leading-snug { line-height: 1.375; } .leading-relaxed { line-height: 1.625; } .leading-\[0\.85\] { line-height: .85; } .leading-\[0\.9\] { line-height: .9; } .leading-\[1\.02\] { line-height: 1.02; }
.tracking-tight { letter-spacing: -.025em; } .tracking-widest { letter-spacing: .1em; } .tracking-\[0\.2em\] { letter-spacing: .2em; } .tracking-\[0\.25em\] { letter-spacing: .25em; }

/* Effects */
.opacity-60 { opacity: .6; } .opacity-100 { opacity: 1; } .opacity-\[0\.06\] { opacity: .06; }
.backdrop-blur, .backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.transition-colors { transition: color .15s ease, background-color .15s ease, border-color .15s ease; } .transition-transform { transition: transform .15s ease; } .transition-opacity { transition: opacity .15s ease; } .transition-all { transition: all .3s ease; }
.duration-500 { transition-duration: .5s; } .duration-700 { transition-duration: .7s; } .duration-1000 { transition-duration: 1s; }
.translate-y-0 { transform: translateY(0); } .translate-x-\[1px\] { transform: translateX(1px); } .-translate-x-4 { transform: translateX(-1rem); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-.125rem); }
.hover\:border-foreground\/40:hover { border-color: color-mix(in oklab, var(--foreground) 40%, transparent); }
.hover\:text-foreground:hover { color: var(--foreground); } .hover\:underline:hover { text-decoration: underline; }
.group:hover .group-hover\:translate-x-0\.5 { transform: translateX(.125rem); } .group:hover .group-hover\:translate-x-1 { transform: translateX(.25rem); } .group:hover .group-hover\:-translate-y-0\.5 { transform: translateY(-.125rem); } .group:hover .group-hover\:-translate-y-1 { transform: translateY(-.25rem); }
.focus\:outline-none:focus { outline: none; }

/* Grids */
.grid-cols-1 { grid-template-columns: 1fr; } .grid-cols-\[1fr_2fr\] { grid-template-columns: 1fr 2fr; } .grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
.divide-y > * + * { border-top: 1px solid var(--hairline); }

@media (min-width: 640px) {
  .sm\:inline-flex { display: inline-flex; } .sm\:items-center { align-items: center; } .sm\:rounded-full { border-radius: 999rem; } .sm\:border { border: 1px solid; } .sm\:border-foreground\/15 { border-color: color-mix(in oklab, var(--foreground) 15%, transparent); } .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; } .sm\:py-1\.5 { padding-top: .375rem; padding-bottom: .375rem; } .sm\:hover\:bg-foreground:hover { background: var(--foreground); } .sm\:hover\:text-background:hover { color: var(--background); }
}
@media (min-width: 768px) {
  .md\:block { display: block; } .md\:hidden { display: none; } .md\:inline { display: inline; } .md\:flex-row { flex-direction: row; } .md\:items-center { align-items: center; } .md\:items-end { align-items: flex-end; } .md\:justify-between { justify-content: space-between; } .md\:justify-end { justify-content: flex-end; }
  .md\:h-12 { height: 3rem; } .md\:h-24 { height: 6rem; } .md\:px-8 { padding-left: 2rem; padding-right: 2rem; } .md\:pt-24 { padding-top: 6rem; } .md\:pb-32 { padding-bottom: 8rem; } .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; } .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; } .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:gap-6 { gap: 1.5rem; } .md\:gap-10 { gap: 2.5rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); } .md\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0,1fr)); } .md\:grid-cols-\[180px_1fr\] { grid-template-columns: 180px 1fr; } .md\:grid-cols-\[80px_240px_1fr\] { grid-template-columns: 80px 240px 1fr; }
  .md\:col-span-3 { grid-column: span 3 / span 3; } .md\:col-span-4 { grid-column: span 4 / span 4; } .md\:col-span-5 { grid-column: span 5 / span 5; } .md\:col-span-7 { grid-column: span 7 / span 7; } .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:text-lg { font-size: 1.125rem; } .md\:text-3xl { font-size: 1.875rem; } .md\:text-4xl { font-size: 2.25rem; } .md\:text-5xl { font-size: 3rem; } .md\:text-6xl { font-size: 3.75rem; line-height: 1; } .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:divide-x > * + * { border-left: 1px solid var(--hairline); } .md\:first\:pl-0:first-child { padding-left: 0; } .md\:last\:pr-0:last-child { padding-right: 0; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; } .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0,1fr)); } .lg\:gap-10 { gap: 2.5rem; } .lg\:col-span-4 { grid-column: span 4 / span 4; } .lg\:col-span-5 { grid-column: span 5 / span 5; } .lg\:col-span-7 { grid-column: span 7 / span 7; } .lg\:col-span-8 { grid-column: span 8 / span 8; }
}

/* Mobile refinements */
.grid > * { min-width: 0; }
.hero-grid { grid-template-columns: minmax(0, 1fr); }
.hero-media-column { min-width: 0; width: 100%; }
.hero-media { display: block; width: 100%; max-width: 100%; min-width: 0; margin-left: auto; margin-right: auto; }
@media (max-width: 639px) {
  .mx-auto.flex.h-20.max-w-6xl.items-center.justify-between.gap-6.px-6.md\:h-24 { gap: .75rem; padding-left: 1rem; padding-right: 1rem; }
  .lang-switcher { gap: .5rem; }
  .lang-switcher > a[href="https://tipnotip.com"] { padding-left: .85rem; padding-right: .85rem; font-size: .75rem; white-space: nowrap; }
  .lang-switcher button { padding-left: .65rem; padding-right: .65rem; }
  .hero-media { width: min(100%, calc(100vw - 3rem)); }
  .hero-media figcaption { gap: .75rem; letter-spacing: .18em; }
}

/* Hero: desktop keeps text and media side by side; tablet/mobile stack safely. */
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); align-items: center; }
  .hero-media { width: 100%; max-width: 100%; }
}

.hero-media-image {
  width: min(58%, 260px);
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}